-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: report request start and end with diagnostics_channel
PR-URL: #34895 Reviewed-By: Bryan English <[email protected]> Reviewed-By: Gerhard Stöbich <[email protected]> Reviewed-By: Vladimir de Turckheim <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Gabriel Schulhof <[email protected]> Reviewed-By: Michael Dawson <[email protected]>
- Loading branch information
Showing
3 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
'use strict'; | ||
const common = require('../common.js'); | ||
const dc = require('diagnostics_channel'); | ||
const { AsyncLocalStorage } = require('async_hooks'); | ||
const http = require('http'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
apm: ['none', 'diagnostics_channel', 'patch'], | ||
type: 'buffer', | ||
len: 1024, | ||
chunks: 4, | ||
connections: [50, 500], | ||
chunkedEnc: 1, | ||
duration: 5 | ||
}); | ||
|
||
function main({ apm, connections, duration, type, len, chunks, chunkedEnc }) { | ||
const done = { none, patch, diagnostics_channel }[apm](); | ||
|
||
const server = require('../fixtures/simple-http-server.js') | ||
.listen(common.PORT) | ||
.on('listening', () => { | ||
const path = `/${type}/${len}/${chunks}/normal/${chunkedEnc}`; | ||
bench.http({ | ||
path, | ||
connections, | ||
duration | ||
}, () => { | ||
server.close(); | ||
if (done) done(); | ||
}); | ||
}); | ||
} | ||
|
||
function none() {} | ||
|
||
function patch() { | ||
const als = new AsyncLocalStorage(); | ||
const times = []; | ||
|
||
const { emit } = http.Server.prototype; | ||
function wrappedEmit(...args) { | ||
const [name, req, res] = args; | ||
if (name === 'request') { | ||
als.enterWith({ | ||
url: req.url, | ||
start: process.hrtime.bigint() | ||
}); | ||
|
||
res.on('finish', () => { | ||
times.push({ | ||
...als.getStore(), | ||
statusCode: res.statusCode, | ||
end: process.hrtime.bigint() | ||
}); | ||
}); | ||
} | ||
return emit.apply(this, args); | ||
} | ||
http.Server.prototype.emit = wrappedEmit; | ||
|
||
return () => { | ||
http.Server.prototype.emit = emit; | ||
}; | ||
} | ||
|
||
function diagnostics_channel() { | ||
const als = new AsyncLocalStorage(); | ||
const times = []; | ||
|
||
const start = dc.channel('http.server.request.start'); | ||
const finish = dc.channel('http.server.response.finish'); | ||
|
||
function onStart(req) { | ||
als.enterWith({ | ||
url: req.url, | ||
start: process.hrtime.bigint() | ||
}); | ||
} | ||
|
||
function onFinish(res) { | ||
times.push({ | ||
...als.getStore(), | ||
statusCode: res.statusCode, | ||
end: process.hrtime.bigint() | ||
}); | ||
} | ||
|
||
start.subscribe(onStart); | ||
finish.subscribe(onFinish); | ||
|
||
return () => { | ||
start.unsubscribe(onStart); | ||
finish.unsubscribe(onFinish); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
test/parallel/test-diagnostics-channel-http-server-start.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const { AsyncLocalStorage } = require('async_hooks'); | ||
const dc = require('diagnostics_channel'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
|
||
const incomingStartChannel = dc.channel('http.server.request.start'); | ||
const outgoingFinishChannel = dc.channel('http.server.response.finish'); | ||
|
||
const als = new AsyncLocalStorage(); | ||
let context; | ||
|
||
// Bind requests to an AsyncLocalStorage context | ||
incomingStartChannel.subscribe(common.mustCall((message) => { | ||
als.enterWith(message); | ||
context = message; | ||
})); | ||
|
||
// When the request ends, verify the context has been maintained | ||
// and that the messages contain the expected data | ||
outgoingFinishChannel.subscribe(common.mustCall((message) => { | ||
const data = { | ||
request, | ||
response, | ||
server, | ||
socket: request.socket | ||
}; | ||
|
||
// Context is maintained | ||
compare(als.getStore(), context); | ||
|
||
compare(context, data); | ||
compare(message, data); | ||
})); | ||
|
||
let request; | ||
let response; | ||
|
||
const server = http.createServer(common.mustCall((req, res) => { | ||
request = req; | ||
response = res; | ||
|
||
setTimeout(() => { | ||
res.end('done'); | ||
}, 1); | ||
})); | ||
|
||
server.listen(() => { | ||
const { port } = server.address(); | ||
http.get(`http://localhost:${port}`, (res) => { | ||
res.resume(); | ||
res.on('end', () => { | ||
server.close(); | ||
}); | ||
}); | ||
}); | ||
|
||
function compare(a, b) { | ||
assert.strictEqual(a.request, b.request); | ||
assert.strictEqual(a.response, b.response); | ||
assert.strictEqual(a.socket, b.socket); | ||
assert.strictEqual(a.server, b.server); | ||
} |