Hi all,
I am currently working on adding a flag similar to --prof but use the better-maintained v8 CPU profiler instead. Working prototype is here, which reuses the recent refactored NODE_V8_COVERAGE implementation (also depends on another refactor in https://github.com/nodejs/node/pull/26874).
When running
node --cpu-prof entry.js
It starts the CPU profiler at start up, when the Node.js instance (main thread or worker threads) exits, it writes the CPU profile under the current working directory with the file name returned by the unified DiagnosticFileName('CPU', 'cpuprofile') (example: CPU.20190323.191111.95080.0.cpuprofile).
It also provides --cpu-prof-name for the user to specify the path where the profile will be written to (the directory of the path would be created if it does not exist yet). (we can't make that a value of --cpu-prof because then node --cpu-prof entry.js would be ambiguous, or at least our current option parser does not support something smart enough to work around it).
The generated CPU profile can be visualized using Chrome's dedicated DevTools for Node.js (available in chrome://inspect), this is much easier to use than --prof-process for --prof, although V8's CPU profiler is currently only capable of profiling JavaScript. However there are also discussions about including native stacks there as well (according to @psmarshall ).
We may also be able to hook this into our benchmark runner to get CPU profiles for the core benchmarks.
Some questions regarding this feature:
process.argv, process.env), as well as preparations done before executing the entry point (e.g. running preloaded modules specified with --require) - currently these two are mixed together but we should be able to refactor and separate them.JSON::Parse on the message returned from the inspector protocol, and then does a JSON::Stringify on the specific subtree (in this case, message.result.profile). It should be fine as an initial implementation, however:v8-profile.h)Any feedback regarding this idea is welcomed!
I think it's a good idea to keep a --cpu-prof-process-like option to avoid requiring a browser to view results.
I think it's a good idea to keep a --cpu-prof-process-like option to avoid requiring a browser to view results.
It would be good as a follow-up for the flag that writes the CPU profile. I can think of two ways to implement this:
--prof-process which is sometimes broken without being noticed (even though the scripts mostly comes from deps/v8/tools) - or it does work, but does not produce enough meaningful output.tools (similar to --prof-process) and we vendor it in over here along with v8 (or it could be placed somewhere else maintained by the upstream). This may get better test coverage in the upstream, since unlike --prof the CPU profiler is considered public and is well-supported.Even if we go with option 1, I think this should ideally be developed in a separate repo, published to npm, before it matures and be moved here (similar to node-report). That is not even blocked by the feature proposed here though, since it is just a regular CLI that takes a CPU profile and prints things.
This also helps moving the v8 CPU profiler from tier 3 in our diagnostics tooling support to tier 1.
cc @nodejs/v8 @nodejs/diagnostics
--cpu-prof was implemented. Can we close?
Most helpful comment
It would be good as a follow-up for the flag that writes the CPU profile. I can think of two ways to implement this:
--prof-processwhich is sometimes broken without being noticed (even though the scripts mostly comes fromdeps/v8/tools) - or it does work, but does not produce enough meaningful output.tools(similar to--prof-process) and we vendor it in over here along with v8 (or it could be placed somewhere else maintained by the upstream). This may get better test coverage in the upstream, since unlike--profthe CPU profiler is considered public and is well-supported.Even if we go with option 1, I think this should ideally be developed in a separate repo, published to npm, before it matures and be moved here (similar to
node-report). That is not even blocked by the feature proposed here though, since it is just a regular CLI that takes a CPU profile and prints things.This also helps moving the v8 CPU profiler from tier 3 in our diagnostics tooling support to tier 1.
cc @nodejs/v8 @nodejs/diagnostics