in NodeJS Essentials by (20.8k points)

What is Tracing in Node.js?

1 Answer

0 votes
by (32.2k points)

Tracing provides a mechanism to collect tracing information generated by V8, Node core and userspace code in a log file. Tracing can be enabled by passing the --trace-events-enabled flag when starting a Node.js application.

The set of categories for which traces are recorded can be specified using the --trace-event-categories flag followed by a list of comma separated category names. By default the node and v8 categories are enabled.

node --trace-events-enabled --trace -event-categories v8,node server.js

Running Node.js with tracing enabled will produce log files that can be opened in the chrome://tracing tab of Chrome.

Related questions

+1 vote
+1 vote
asked May 31, 2020 in NodeJS Essentials by Robindeniel (20.8k points)
0 votes
+1 vote
asked May 30, 2020 in NodeJS Essentials by SakshiSharma (32.2k points)
0 votes
asked Aug 15, 2021 in APIGEE - API Services by sharadyadav1986 (31.6k points)
...