forked from newrelic/node-newrelic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
267 lines (226 loc) · 8.44 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
'use strict'
// Record opening times before loading any other files.
const preAgentTime = process.uptime()
const agentStart = Date.now()
const { isMainThread } = require('worker_threads')
// Load unwrapped core now to ensure it gets the freshest properties.
require('./lib/util/unwrapped-core')
const featureFlags = require('./lib/feature_flags').prerelease
const psemver = require('./lib/util/process-version')
let logger = require('./lib/logger') // Gets re-loaded after initialization.
const NAMES = require('./lib/metrics/names')
const pkgJSON = require('./package.json')
logger.info(
'Using New Relic for Node.js. Agent version: %s; Node version: %s.',
pkgJSON.version,
process.version
)
if (require.cache.__NR_cache) {
logger.warn(
'Attempting to load a second copy of newrelic from %s, using cache instead',
__dirname
)
if (require.cache.__NR_cache.agent) {
require.cache.__NR_cache.agent.recordSupportability('Agent/DoubleLoad')
}
module.exports = require.cache.__NR_cache
} else {
initialize()
}
function initApi({ agent, apiPath }) {
const API = require(`./${apiPath}`)
const api = new API(agent)
require.cache.__NR_cache = module.exports = api
return api
}
function initialize() {
logger.debug('Loading agent from %s', __dirname)
let agent = null
let message = null
try {
logger.debug('Process was running %s seconds before agent was loaded.', preAgentTime)
if (!psemver.satisfies(pkgJSON.engines.node)) {
message =
`New Relic for Node.js requires a version of Node ${pkgJSON.engines.node}. \n` +
`Please upgrade from your current Node version: ${process.version}. Not starting!`
throw new Error(message)
}
// TODO: Update this check when Node v24 support is added
if (psemver.satisfies('>=23.0.0')) {
logger.warn(
'New Relic for Node.js %s has not been tested on Node.js %s. Please ' +
'update the agent or downgrade your version of Node.js',
pkgJSON.version,
process.version
)
}
logger.debug('Current working directory at module load is %s.', process.cwd())
logger.debug('Process title is %s.', process.title)
// execArgv happens before the script name but after the original executable name
// https://nodejs.org/api/process.html#process_process_execargv
const cliArgs = [process.argv[0], ...process.execArgv, ...process.argv.slice(1)]
logger.debug('Application was invoked as %s', cliArgs.join(' '))
const config = require('./lib/config').getOrCreateInstance()
// Get the initialized logger as we likely have a bootstrap logger which
// just pipes to stdout.
logger = require('./lib/logger')
if (!config) {
logger.info('No configuration detected. Not starting.')
} else if (!config.agent_enabled) {
logger.info('Module disabled in configuration. Not starting.')
} else if (!config.worker_threads.enabled && !isMainThread) {
logger.warn(
'New Relic for Node.js in worker_threads is not officially supported. Not starting! To bypass this, set `config.worker_threads.enabled` to true in configuration.'
)
} else {
if (!isMainThread && config.worker_threads.enabled) {
logger.warn(
'Attempting to load agent in worker thread. This is not officially supported. Use at your own risk.'
)
}
agent = createAgent(config)
addStartupSupportabilities(agent)
}
} catch (error) {
message = 'New Relic for Node.js was unable to bootstrap itself due to an error:'
logger.error(error, message)
/* eslint-disable no-console */
console.error(message)
console.error(error.stack)
/* eslint-enable no-console */
}
const api = agent ? initApi({ agent, apiPath: 'api' }) : initApi({ apiPath: 'stub_api' })
// If we loaded an agent, record a startup time for the agent.
// NOTE: Metrics are recorded in seconds, so divide the value by 1000.
if (agent) {
const initDuration = (Date.now() - agentStart) / 1000
agent.recordSupportability('Nodejs/Application/Opening/Duration', preAgentTime)
agent.recordSupportability('Nodejs/Application/Initialization/Duration', initDuration)
agent.once('started', function timeAgentStart() {
agent.recordSupportability(
'Nodejs/Application/Registration/Duration',
(Date.now() - agentStart) / 1000
)
})
if (agent.config.security.agent.enabled) {
require('@newrelic/security-agent').start(api)
}
}
}
function createAgent(config) {
/* Only load the rest of the module if configuration is available and the
* configurator didn't throw.
*
* The agent must be a singleton, or else module loading will be patched
* multiple times, with undefined results. New Relic's instrumentation
* can't be enabled or disabled without an application restart.
*/
const Agent = require('./lib/agent')
const agent = new Agent(config)
const appNames = agent.config.applications()
if (config.logging.diagnostics) {
logger.warn('Diagnostics logging is enabled, this may cause significant overhead.')
}
if (appNames.length < 1) {
const message =
'New Relic requires that you name this application!\n' +
'Set app_name in your newrelic.js or newrelic.cjs file or set environment variable\n' +
'NEW_RELIC_APP_NAME. Not starting!'
throw new Error(message)
}
const shimmer = require('./lib/shimmer')
shimmer.bootstrapInstrumentation(agent)
// Check for already loaded modules and warn about them.
const uninstrumented = require('./lib/uninstrumented')
uninstrumented.check(shimmer.registeredInstrumentations)
shimmer.registerHooks(agent)
agent.start(function afterStart(error) {
if (error) {
const errorMessage = 'New Relic for Node.js halted startup due to an error:'
logger.error(error, errorMessage)
/* eslint-disable no-console */
console.error(errorMessage)
console.error(error.stack)
/* eslint-enable no-console */
return
}
logger.debug('New Relic for Node.js is connected to New Relic.')
})
return agent
}
function addStartupSupportabilities(agent) {
recordLoaderMetric(agent)
recordNodeVersionMetric(agent)
recordFeatureFlagMetrics(agent)
recordSourceMapMetric(agent)
}
/**
* Records the major version of the Node.js runtime
* TODO: As new versions come out, make sure to update Angler metrics.
*
* @param {Agent} agent active NR agent
*/
function recordNodeVersionMetric(agent) {
const nodeMajor = /^v?(\d+)/.exec(process.version)
const version = (nodeMajor && nodeMajor[1]) || 'unknown'
agent.recordSupportability(`Nodejs/Version/${version}`)
}
/**
* Records all the feature flags configured and if they are enabled/disabled
*
* @param {Agent} agent active NR agent
*/
function recordFeatureFlagMetrics(agent) {
const configFlags = Object.keys(agent.config.feature_flag)
for (let i = 0; i < configFlags.length; ++i) {
const flag = configFlags[i]
const enabled = agent.config.feature_flag[flag]
if (enabled !== featureFlags[flag]) {
agent.recordSupportability(
'Nodejs/FeatureFlag/' + flag + '/' + (enabled ? 'enabled' : 'disabled')
)
}
}
}
/**
* Used to determine how the agent is getting loaded:
* 1. -r newrelic
* 2. --loader newrelic/esm-loader.mjs
* 3. require('newrelic')
*
* Then a supportability metric is loaded to decide.
*
* @param {Agent} agent active NR agent
*/
function recordLoaderMetric(agent) {
let isDashR = false
process.execArgv.forEach((arg, index) => {
if (arg === '-r' && process.execArgv[index + 1] === 'newrelic') {
agent.metrics.getOrCreateMetric(NAMES.FEATURES.CJS.PRELOAD).incrementCallCount()
isDashR = true
} else if (
(arg === '--loader' || arg === '--experimental-loader') &&
process.execArgv[index + 1] === 'newrelic/esm-loader.mjs'
) {
agent.metrics.getOrCreateMetric(NAMES.FEATURES.ESM.LOADER).incrementCallCount()
}
})
if (!isDashR) {
agent.metrics.getOrCreateMetric(NAMES.FEATURES.CJS.REQUIRE).incrementCallCount()
}
}
/**
* Checks to see if `--enable-source-maps` is being used and logs a supportability metric.
*
* @param {Agent} agent active NR agent
*/
function recordSourceMapMetric(agent) {
const isSourceMapsEnabled = process.execArgv.includes('--enable-source-maps')
if (isSourceMapsEnabled) {
agent.metrics.getOrCreateMetric(NAMES.FEATURES.SOURCE_MAPS).incrementCallCount()
}
}