We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7d634b commit 3dae6f2Copy full SHA for 3dae6f2
doc/api/debugger.md
@@ -202,6 +202,13 @@ debug>
202
* `repl`: Open debugger's repl for evaluation in debugging script's context
203
* `exec expr`, `p expr`: Execute an expression in debugging script's context and
204
print its value
205
+* `profile`: Start CPU profiling session
206
+* `profileEnd`: Stop current CPU profiling session
207
+* `profiles`: List all completed CPU profiling sessions
208
+* `profiles[n].save(filepath = 'node.cpuprofile')`: Save CPU profiling session
209
+ to disk as JSON
210
+* `takeHeapSnapshot(filepath = 'node.heapsnapshot')`: Take a heap snapshot
211
+ and save to disk as JSON
212
213
### Execution control
214
0 commit comments