newrelic
Version:
New Relic agent
122 lines (99 loc) • 3.02 kB
JavaScript
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
const logger = require('./lib/logger.js')
const RealAPI = require('./api.js')
const TransactionHandle = require('./lib/transaction/handle')
function stubFunction(name) {
// eslint-disable-next-line sonarjs/code-eval, no-eval
return eval(
'(function () {return function ' +
name +
'() {' +
"logger.debug('Not calling " +
name +
" because New Relic is disabled.');" +
'}}())'
)
}
function Stub() {}
const keys = Object.keys(RealAPI.prototype)
const length = keys.length
/* This way the stub API doesn't have to be updated in lockstep with the regular
* API.
*/
for (let i = 0; i < length; i++) {
const functionName = keys[i]
Stub.prototype[functionName] = stubFunction(functionName)
}
Stub.prototype.startSegment = startSegment
Stub.prototype.startWebTransaction = startWebTransaction
Stub.prototype.startBackgroundTransaction = startBackgroundTransaction
Stub.prototype.getTransaction = getTransaction
Stub.prototype.getBrowserTimingHeader = getBrowserTimingHeader
Stub.prototype.shutdown = shutdown
Stub.prototype.setLambdaHandler = setLambdaHandler
Stub.prototype.getLinkingMetadata = getLinkingMetadata
Stub.prototype.getTraceMetadata = getTraceMetadata
// This code gets injected into HTML templates
// and we don't want it to return undefined/null.
function getBrowserTimingHeader() {
logger.debug('Not calling getBrowserTimingHeader because New Relic is disabled.')
return ''
}
function getTransaction() {
return new TransactionHandle.Stub()
}
function setLambdaHandler(callback) {
logger.debug('Not calling setLambdaHandler because New Relic is disabled.')
return callback
}
function startSegment(name, record, handler, callback) {
logger.debug('Not calling `startSegment` because New Relic is disabled.')
if (typeof handler === 'function') {
return handler(callback)
}
return null
}
function getLinkingMetadata() {
return {}
}
function getTraceMetadata() {
return {
traceId: '',
spanId: ''
}
}
function startWebTransaction(url, callback) {
logger.debug('Not calling startWebTransaction because New Relic is disabled.')
if (typeof callback === 'function') {
return callback()
}
return null
}
function startBackgroundTransaction(name, group, callback) {
logger.debug('Not calling startBackgroundTransaction because New Relic is disabled.')
if (typeof callback === 'function') {
return callback()
}
if (typeof group === 'function') {
return group()
}
return null
}
// Normally the following call executes callback asynchronously
function shutdown(options, cb) {
logger.debug('Not calling shutdown because New Relic is disabled.')
let callback = cb
if (!callback) {
if (typeof options === 'function') {
callback = options
} else {
callback = function __NRDefaultCb() {}
}
}
setImmediate(callback)
}
module.exports = Stub