newrelic
Version:
New Relic agent
24 lines (21 loc) • 541 B
JavaScript
/*
* Copyright 2026 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
const internalSendCommand = {
path: './redis/internal-send-command',
instrumentations: [{
channelName: 'nr_internalSendCommand',
module: { name: 'redis', versionRange: '>=2.6.0 <4', filePath: 'index.js' },
functionQuery: {
// RedisClient.prototype.internal_send_command
expressionName: 'internal_send_command',
kind: 'Sync'
}
}]
}
module.exports = {
redis: [
internalSendCommand
]
}