mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 01:18:49 +00:00

Removes the requirement to use `--trace-events-enabled` to enable trace events. Tracing is enabled automatically if there are any enabled categories. Adds a new `trace_events` module with an API for enabling/disabling trace events at runtime without a command line flag. ```js const trace_events = require('trace_events'); const categories = [ 'node.perf', 'node.async_hooks' ]; const tracing = trace_events.createTracing({ categories }); tracing.enable(); // do stuff tracing.disable(); ``` Multiple `Tracing` objects may exist and be enabled at any point in time. The enabled trace event categories is the union of all enabled `Tracing` objects and the `--trace-event-categories` flag. PR-URL: https://github.com/nodejs/node/pull/19803 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
62 lines
2.0 KiB
JavaScript
62 lines
2.0 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cp = require('child_process');
|
|
const fs = require('fs');
|
|
|
|
const CODE = `
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 10, 'extra-value', 20);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 20, 'first-value', 20, 'second-value', 30);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 30);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'missing',
|
|
'type-value', 10, 'extra-value', 20);
|
|
`;
|
|
const FILE_NAME = 'node_trace.1.log';
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
process.chdir(tmpdir.path);
|
|
|
|
const proc = cp.spawn(process.execPath,
|
|
[ '--trace-event-categories', 'custom',
|
|
'-e', CODE ]);
|
|
|
|
proc.once('exit', common.mustCall(() => {
|
|
assert(common.fileExists(FILE_NAME));
|
|
fs.readFile(FILE_NAME, common.mustCall((err, data) => {
|
|
const traces = JSON.parse(data.toString()).traceEvents;
|
|
assert.strictEqual(traces.length, 3);
|
|
|
|
assert.strictEqual(traces[0].pid, proc.pid);
|
|
assert.strictEqual(traces[0].ph, 'b');
|
|
assert.strictEqual(traces[0].cat, 'custom');
|
|
assert.strictEqual(traces[0].name, 'type-value');
|
|
assert.strictEqual(traces[0].id, '0xa');
|
|
assert.deepStrictEqual(traces[0].args, { 'extra-value': 20 });
|
|
|
|
assert.strictEqual(traces[1].pid, proc.pid);
|
|
assert.strictEqual(traces[1].ph, 'b');
|
|
assert.strictEqual(traces[1].cat, 'custom');
|
|
assert.strictEqual(traces[1].name, 'type-value');
|
|
assert.strictEqual(traces[1].id, '0x14');
|
|
assert.deepStrictEqual(traces[1].args, {
|
|
'first-value': 20,
|
|
'second-value': 30
|
|
});
|
|
|
|
assert.strictEqual(traces[2].pid, proc.pid);
|
|
assert.strictEqual(traces[2].ph, 'b');
|
|
assert.strictEqual(traces[2].cat, 'custom');
|
|
assert.strictEqual(traces[2].name, 'type-value');
|
|
assert.strictEqual(traces[2].id, '0x1e');
|
|
assert.deepStrictEqual(traces[2].args, { });
|
|
}));
|
|
}));
|