You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lib: replace --diagnostic-report-* with --report-*
In the code base the word `report` is almost only used to refer to
the diagnostic report when it's a noun, and it's programmable
interface `process.report()` it not prefixed, so `report` should be
unambiguous enough to use without `diagnostic`.
PR-URL: #27312
Reviewed-By: Gireesh Punathil <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Copy file name to clipboardexpand all lines: doc/node.1
+36-36
Original file line number
Diff line number
Diff line change
@@ -90,42 +90,6 @@ Path the V8 CPU profile generated with
90
90
will be written to. When used alone, it implies
91
91
.Fl-cpu-prof
92
92
.
93
-
.ItFl-diagnostic-report-directory
94
-
Location at which the
95
-
.Sydiagnosticreport
96
-
will be generated.
97
-
.
98
-
.ItFl-diagnostic-report-filename
99
-
Name of the file to which the
100
-
.Sydiagnosticreport
101
-
will be written.
102
-
.
103
-
.ItFl-diagnostic-report-on-fatalerror
104
-
Enables the
105
-
.Sydiagnosticreport
106
-
to be triggered on fatal errors (internal errors within the Node.js runtime such as out of memory) that leads to termination of the application, if
107
-
.Sy--experimental-report
108
-
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.
109
-
.
110
-
.ItFl-diagnostic-report-on-signal
111
-
Enables
112
-
.Sydiagnosticreport
113
-
to be generated upon receiving the specified (or predefined) signal to the running Node.js process, if
114
-
.Sy--experimental-report
115
-
is enabled. Default signal is SIGUSR2.
116
-
.
117
-
.ItFl-diagnostic-report-signal
118
-
Sets or resets the signal for
119
-
.Sydiagnosticreport
120
-
generation (not supported on Windows). Default signal is SIGUSR2.
121
-
.
122
-
.ItFl-diagnostic-report-uncaught-exception
123
-
Enables
124
-
.Sydiagnosticreport
125
-
to be generated on un-caught exceptions, if
126
-
.Sy--experimental-report
127
-
is enabled. Useful when inspecting JavaScript stack in conjunction with native stack and other runtime environment data.
128
-
.
129
93
.ItFl-enable-fips
130
94
Enable FIPS-compliant crypto at startup.
131
95
Requires Node.js to be built with
@@ -250,6 +214,42 @@ Write process warnings to the given
250
214
.Arfile
251
215
instead of printing to stderr.
252
216
.
217
+
.ItFl-report-directory
218
+
Location at which the
219
+
.Sydiagnosticreport
220
+
will be generated.
221
+
.
222
+
.ItFl-report-filename
223
+
Name of the file to which the
224
+
.Sydiagnosticreport
225
+
will be written.
226
+
.
227
+
.ItFl-report-on-fatalerror
228
+
Enables the
229
+
.Sydiagnosticreport
230
+
to be triggered on fatal errors (internal errors within the Node.js runtime such as out of memory) that leads to termination of the application, if
231
+
.Sy--experimental-report
232
+
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.
233
+
.
234
+
.ItFl-report-on-signal
235
+
Enables
236
+
.Sydiagnosticreport
237
+
to be generated upon receiving the specified (or predefined) signal to the running Node.js process, if
238
+
.Sy--experimental-report
239
+
is enabled. Default signal is SIGUSR2.
240
+
.
241
+
.ItFl-report-signal
242
+
Sets or resets the signal for
243
+
.Sydiagnosticreport
244
+
generation (not supported on Windows). Default signal is SIGUSR2.
245
+
.
246
+
.ItFl-report-uncaught-exception
247
+
Enables
248
+
.Sydiagnosticreport
249
+
to be generated on un-caught exceptions, if
250
+
.Sy--experimental-report
251
+
is enabled. Useful when inspecting JavaScript stack in conjunction with native stack and other runtime environment data.
0 commit comments