diff --git a/doc/api/cli.md b/doc/api/cli.md index c26177444c7894..d1419e2ccc9ff9 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -106,57 +106,6 @@ should be written to. When used alone, it implies `--cpu-prof`. $ node --cpu-prof-path /tmp/test.cpuprofile index.js ``` -### `--diagnostic-report-directory=directory` - - -Location at which the report will be generated. - -### `--diagnostic-report-filename=filename` - - -Name of the file to which the report will be written. - -### `--diagnostic-report-on-fatalerror` - - -Enables the report to be triggered on fatal errors (internal errors within -the Node.js runtime such as out of memory) that lead to termination of the -application, if `--experimental-report` is enabled. Useful to inspect various -diagnostic data elements such as heap, stack, event loop state, resource -consumption etc. to reason about the fatal error. - -### `--diagnostic-report-on-signal` - - -Enables report to be generated upon receiving the specified (or predefined) -signal to the running Node.js process, if `--experimental-report` is enabled. -The signal to trigger the report is specified through `--diagnostic-report-signal`. - -### `--diagnostic-report-signal=signal` - - -Sets or resets the signal for report generation (not supported on Windows). -Default signal is `SIGUSR2`. - -### `--diagnostic-report-uncaught-exception` - - -Enables report to be generated on un-caught exceptions, if -`--experimental-report` is enabled. Useful when inspecting JavaScript stack in -conjunction with native stack and other runtime environment data. - ### `--enable-fips` + +Location at which the report will be generated. + +### `--report-filename=filename` + + +Name of the file to which the report will be written. + +### `--report-on-fatalerror` + + +Enables the report to be triggered on fatal errors (internal errors within +the Node.js runtime such as out of memory) that lead to termination of the +application, if `--experimental-report` is enabled. Useful to inspect various +diagnostic data elements such as heap, stack, event loop state, resource +consumption etc. to reason about the fatal error. + +### `--report-on-signal` + + +Enables report to be generated upon receiving the specified (or predefined) +signal to the running Node.js process, if `--experimental-report` is enabled. +The signal to trigger the report is specified through `--report-signal`. + +### `--report-signal=signal` + + +Sets or resets the signal for report generation (not supported on Windows). +Default signal is `SIGUSR2`. + +### `--report-uncaught-exception` + + +Enables report to be generated on un-caught exceptions, if +`--experimental-report` is enabled. Useful when inspecting JavaScript stack in +conjunction with native stack and other runtime environment data. + ### `--throw-deprecation`