-
Notifications
You must be signed in to change notification settings - Fork 419
Expand file tree
/
Copy pathhttp.js
More file actions
428 lines (368 loc) · 13.8 KB
/
http.js
File metadata and controls
428 lines (368 loc) · 13.8 KB
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
/*
* Copyright 2020 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
'use strict'
const shimmer = require('../../shimmer')
const logger = require('../../logger').child({ component: 'http' })
const recordWeb = require('../../metrics/recorders/http')
const cat = require('../../util/cat')
const instrumentOutbound = require('./http-outbound')
const urltils = require('../../util/urltils')
const headerProcessing = require('../../header-processing')
const synthetics = require('../../synthetics')
const NAMES = require('../../metrics/names')
const symbols = require('../../symbols')
// For incoming requests this instrumentation functions by wrapping
// `http.createServer` and `http.Server#addListener`. The former merely sets the
// agent dispatcher to 'http' and the latter wraps any event handlers bound to
// `request`.
//
// The `request` event listener wrapper creates a transaction proxy which will
// start a new transaction whenever a new request comes in. It also scans the
// headers of the incoming request looking for CAT and synthetics headers.
function wrapEmitWithTransaction(agent, emit, isHTTPS) {
const tracer = agent.tracer
const transport = isHTTPS ? 'HTTPS' : 'HTTP'
return tracer.transactionProxy(function wrappedHandler(evnt, request, response) {
const context = tracer.getContext()
const transaction = tracer.getTransaction()
if (!transaction) {
return emit.apply(this, arguments)
}
transaction.nameState.setPrefix(NAMES.NODEJS.PREFIX)
transaction.nameState.setDelimiter(NAMES.ACTION_DELIMITER)
if (request.method != null) {
transaction.nameState.setVerb(request.method)
}
// Store the transaction information on the request and response.
const txInfo = storeTxInfo(transaction, request, response)
// Create the transaction segment using the request URL for now. Once a
// better name can be determined this segment will be renamed to that.
const segment = tracer.createSegment({
name: request.url,
recorder: recordWeb,
parent: context.segment,
transaction
})
segment.start()
transaction.baseSegment = segment
if (txInfo) {
// Seed segment stack to enable parenting logic leveraged by
// web framework instrumentations.
txInfo.segmentStack.push(segment)
}
let absoluteUrl = null
// handle a request that is to a proxy url
if (request?.url.startsWith('http://') || request?.url.startsWith('https://')) {
absoluteUrl = request.url
// attempt to construct the full URL with known attributes
} else {
absoluteUrl = `${transport}://${request.headers.host || 'localhost'}${request.url}`
}
const port = parsePort(this)
transaction.initializeWeb({ absoluteUrl, method: request.method, port, headers: request.headers, transport })
/* Needed for Connect and Express middleware that monkeypatch request
* and response via listeners.
*/
tracer.bindEmitter(request, segment)
tracer.bindEmitter(response, segment)
response.once('finish', instrumentedFinish.bind(response, transaction))
response.once('close', instrumentedFinish.bind(response, transaction))
const newContext = context.enterSegment({ segment })
return tracer.bindFunction(emit, newContext).apply(this, arguments)
})
}
/**
* Gets the port from the Server object
*
* @param {object} server http(s) server
* @returns {number|null} parsed port
*/
function parsePort(server) {
let serverPort = null
// store the port on which this transaction runs
if (server.address instanceof Function) {
const address = server.address()
if (address) {
serverPort = address.port
}
}
return serverPort
}
/**
* Adds instrumentation to response on finish/close.
* It will add `http.statusCode`, `http.statusText`
* to the transaction trace and span.
* It will also assign the response headers to the transaction
*
* @param {Transaction} transaction active transaction
*/
function instrumentedFinish(transaction) {
// Remove listeners so this doesn't get called twice.
this.removeListener('finish', instrumentedFinish)
this.removeListener('close', instrumentedFinish)
transaction.finalizeWeb({ end: true, statusCode: this.statusCode, statusMessage: this.statusMessage, headers: this.getHeaders() })
}
function storeTxInfo(transaction, request, response) {
if (!request || !response) {
logger.debug('Missing request or response object! Not storing transaction info.')
return
}
const txInfo = {
transaction,
segmentStack: [],
errorHandled: false,
error: null
}
request[symbols.transactionInfo] = response[symbols.transactionInfo] = txInfo
logger.trace('Stored transaction %s information on request and response', transaction.id)
return txInfo
}
function wrapResponseEnd(agent, proto) {
const tracer = agent.tracer
// On end, we must freeze the current name state to maintain the route that
// responded and also end the current segment (otherwise it may become truncated).
shimmer.wrapMethod(proto, 'Response.prototype', 'end', function wrapResEnd(end) {
if (typeof end !== 'function') {
logger.debug('Response#end is not a function?')
return end
}
return function wrappedResEnd() {
const txInfo = this && this[symbols.transactionInfo]
if (!txInfo) {
return end.apply(this, arguments)
}
if (!txInfo.transaction.isActive()) {
logger.trace('wrappedResEnd invoked for ended transaction implying multiple invocations.')
return end.apply(this, arguments)
}
// If an error happened, add it to the aggregator.
if (
txInfo.error &&
(!txInfo.errorHandled || urltils.isError(agent.config, this.statusCode))
) {
agent.errors.add(txInfo.transaction, txInfo.error)
}
// End all the segments leading up to and including this one.
for (let i = txInfo.segmentStack.length - 1; i >= 0; --i) {
txInfo.segmentStack[i].end()
}
const segment = tracer.getSegment()
if (segment) {
segment.end()
}
// Freeze the name state to prevent further changes.
txInfo.transaction.nameState.freeze()
return end.apply(this, arguments)
}
})
}
// CAT this won't be used unless CAT is enabled, see below where we actually do
// the shimmer stuff if you'd like to verify.
function wrapWriteHead(agent, writeHead) {
return function wrappedWriteHead() {
const transaction = agent.tracer.getTransaction()
if (!transaction) {
logger.trace('No transaction - not adding response CAT headers')
return writeHead.apply(this, arguments)
}
synthetics.assignHeadersToResponse(this, transaction)
if (!transaction.incomingCatId) {
logger.trace('No incoming CAT ID - not adding response CAT headers')
return writeHead.apply(this, arguments)
}
if (!agent.config.trusted_account_ids) {
logger.trace('No account IDs in config.trusted_account_ids - not adding response CAT headers')
return writeHead.apply(this, arguments)
}
if (!cat.isTrustedAccountId(transaction.incomingCatId, agent.config.trusted_account_ids)) {
return writeHead.apply(this, arguments)
}
// Not sure this could ever happen, but should guard against it anyway
// otherwise exception we blow up the user's app.
if (!agent.config.cross_process_id || !agent.config.encoding_key) {
logger.trace(
'Managed to have %s but not cross_process_id (%s) or encoding_key (%s) - %s',
'agent.config.trusted_account_ids',
agent.config.cross_process_id,
agent.config.encoding_key,
'not adding response CAT headers'
)
return writeHead.apply(this, arguments)
}
// -1 means no content length header was sent. We should only send this
// value in the appData if the header is set.
let contentLength = -1
const newHeaders = arguments[arguments.length - 1]
if (typeof newHeaders === 'object') {
contentLength = headerProcessing.getContentLengthFromHeaders(newHeaders)
}
const currentHeaders = this.getHeaders()
if (contentLength === -1 && currentHeaders) {
contentLength = headerProcessing.getContentLengthFromHeaders(currentHeaders)
}
// Stored on the tx so we can push a metric with this time instead of
// actual duration.
transaction.catResponseTime = transaction.timer.getDurationInMillis()
const { key, data } = cat.encodeAppData(agent.config, transaction, contentLength)
if (key && data) {
this.setHeader(key, data)
logger.trace('Added outbound response CAT headers in transaction %s', transaction.id)
}
return writeHead.apply(this, arguments)
}
}
// Taken from the Node code base, internal/url.js
function urlToOptions(_url) {
const options = {
protocol: _url.protocol,
hostname:
typeof _url.hostname === 'string' && _url.hostname.startsWith('[')
? _url.hostname.slice(1, -1)
: _url.hostname,
hash: _url.hash,
search: _url.search,
pathname: _url.pathname,
path: `${_url.pathname || ''}${_url.search || ''}`,
href: _url.href
}
if (_url.port !== '') {
options.port = Number(_url.port)
}
if (_url.username || _url.password) {
options.auth = `${_url.username}:${_url.password}`
}
return options
}
/**
* http.request and http.get signatures vary. This function
* will parse the options and callback
*
* @param {*} input first arg of http.request and http.get
* @param {*} options request opts of callback
* @param {Function} cb if present it is the callback
* @returns {Array} [options, cb]
*/
function parseRequest(input, options, cb) {
// If the first argument is a URL, merge it into the options object.
// This code is copied from Node internals.
if (typeof input === 'string') {
const urlStr = input
input = urlToOptions(new URL(urlStr))
} else if (input.constructor && input.constructor.name === 'URL') {
input = urlToOptions(input)
} else {
cb = options
options = input
input = null
}
if (typeof options === 'function') {
cb = options
options = input || {}
} else {
options = Object.assign(input || {}, options)
}
return [options, cb]
}
function wrapRequest(agent, request) {
return function wrappedRequest(input, options, cb) {
;[options, cb] = parseRequest(input, options, cb)
const reqArgs = [options, cb]
// Don't pollute metrics and calls with NR connections
const internalOnly = options && options[symbols.offTheRecord]
if (internalOnly) {
delete options[symbols.offTheRecord]
}
// If this is not a request we're recording, exit early.
const transaction = agent.tracer.getTransaction()
if (!transaction || internalOnly) {
if (!internalOnly && logger.traceEnabled()) {
logger.trace(
'No transaction, not recording external to %s:%s',
options?.hostname || options?.host,
options?.port
)
}
return request.apply(this, reqArgs)
}
const args = agent.tracer.slice(reqArgs)
const context = this
return instrumentOutbound(agent, options, function makeRequest(opts) {
args[0] = opts
return request.apply(context, args)
})
}
}
module.exports = function initialize(agent, http, moduleName) {
if (!http) {
logger.debug('Did not get http module, not instrumenting!')
return false
}
if (process.env.FUNCTIONS_WORKER_RUNTIME) {
logger.debug('In azure functions environment, disabling core http instrumentation in favor of @azure/functions')
return false
}
const IS_HTTPS = moduleName === 'https'
// FIXME: will this ever not be called?
shimmer.wrapMethod(http, 'http', 'createServer', function wrapMethod(createServer) {
return function setDispatcher(requestListener) {
agent.environment.setDispatcher('http')
return createServer.apply(this, arguments)
}
})
// It's not a great idea to monkeypatch EventEmitter methods given how hot
// they are, but this method is simple and works with all versions of node
// supported by the module.
shimmer.wrapMethod(
http.Server && http.Server.prototype,
'http.Server.prototype',
'emit',
function wrapEmit(emit) {
const txStarter = wrapEmitWithTransaction(agent, emit, IS_HTTPS)
return function wrappedEmit(evnt) {
if (evnt === 'request') {
return txStarter.apply(this, arguments)
}
return emit.apply(this, arguments)
}
}
)
wrapResponseEnd(agent, http.ServerResponse && http.ServerResponse.prototype)
// If CAT is enabled we'll wrap `writeHead` to inject our headers.
if (agent.config.cross_application_tracer.enabled) {
shimmer.wrapMethod(
http.ServerResponse && http.ServerResponse.prototype,
'http.ServerResponse.prototype',
'writeHead',
wrapWriteHead.bind(null, agent)
)
}
const agentProto = http && http.Agent && http.Agent.prototype
shimmer.wrapMethod(http, 'http', 'request', wrapRequest.bind(null, agent))
shimmer.wrapMethod(http, 'http', 'get', wrapRequest.bind(null, agent))
shimmer.wrapMethod(
agentProto,
'http.Agent.prototype',
'createConnection',
function wrapCreateConnection(original) {
return function wrappedCreateConnection() {
const context = agent.tracer.getContext()
if (!agent.getTransaction()) {
return original.apply(this, arguments)
}
const segment = agent.tracer.createSegment({
name: 'http.Agent#createConnection',
parent: context.segment,
transaction: context.transaction
})
const args = agent.tracer.slice(arguments)
const newContext = context.enterSegment({ segment })
if (typeof args[1] === 'function') {
args[1] = agent.tracer.bindFunction(args[1], newContext, true)
}
return agent.tracer.bindFunction(original, newContext, true).apply(this, args)
}
}
)
}