Skip to content

Commit a9eb593

Browse files
authoredApr 24, 2024··
chore: Migrated @newrelic/aws-sdk into agent repo (#2161)
2 parents 5ac870e + f7fcf7e commit a9eb593

File tree

101 files changed

+14615
-2728
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+14615
-2728
lines changed
 

‎THIRD_PARTY_NOTICES.md

+1,225-397
Large diffs are not rendered by default.
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/*
2+
* Copyright 2020 New Relic Corporation. All rights reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
'use strict'
7+
const InstrumentationDescriptor = require('../../instrumentation-descriptor')
8+
9+
const instrumentations = [
10+
{
11+
type: InstrumentationDescriptor.TYPE_CONGLOMERATE,
12+
moduleName: 'aws-sdk',
13+
onRequire: require('./v2/instrumentation')
14+
},
15+
{
16+
type: InstrumentationDescriptor.TYPE_CONGLOMERATE,
17+
moduleName: '@aws-sdk/smithy-client',
18+
onRequire: require('./v3/smithy-client'),
19+
shimName: 'aws-sdk'
20+
},
21+
{
22+
type: InstrumentationDescriptor.TYPE_CONGLOMERATE,
23+
moduleName: '@smithy/smithy-client',
24+
onRequire: require('./v3/smithy-client'),
25+
shimName: 'aws-sdk'
26+
}
27+
]
28+
29+
module.exports = instrumentations

0 commit comments

Comments
 (0)
Please sign in to comment.