Allow --perf-prof an --perf-basic-prof in NODE_OPTIONS #17571
Labels
cli
Issues and PRs related to the Node.js command line interface.
feature request
Issues that request new features to be added to Node.js.
good first issue
Issues that are suitable for first-time contributors.
Profiling Node.js programs which spawn another Node.js processes using Linux prof is unnecessarily hard: new processes use executable from the parent process, so it is not possible to add a shell wrapper around Node to add
--perf-prof
to a subprocess, one has to find all the places where subprocesses are spawned and add the argument there.NODE_OPTIONS
is perfect for this task (just run the top-level process with it and all subtree will emit profiling data), but it does not support--perf-prof
or--perf-basic-prof
at the moment.Please add it.
The text was updated successfully, but these errors were encountered: