newrelic
Version:
New Relic agent
43 lines (39 loc) • 845 B
JavaScript
/*
* Copyright 2026 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
const modName = 'connect'
module.exports = {
[modName]: [
{
path: './connect/use.js',
instrumentations: [
{
channelName: 'nr_use',
module: {
name: modName,
filePath: 'index.js',
versionRange: '>=3.4.0'
},
functionQuery: {
expressionName: 'use',
kind: 'Sync'
}
},
{
channelName: 'nr_use',
module: {
name: modName,
filePath: 'lib/proto.js',
versionRange: '>=3.0.0 <3.4.0'
},
functionQuery: {
expressionName: 'use',
kind: 'Sync'
}
},
]
}
]
}