@@ -1684,6 +1684,8 @@ relied upon to exist.
16841684added: v11.8.0
16851685-->
16861686
1687+ > Stability: 1 - Experimental
1688+
16871689* {Object}
16881690
16891691` process.report ` is an object whose methods are used to generate diagnostic
@@ -1695,6 +1697,8 @@ reports for the current process. Additional documentation is available in the
16951697added: v11.12.0
16961698-->
16971699
1700+ > Stability: 1 - Experimental
1701+
16981702* {string}
16991703
17001704Directory where the report is written. The default value is the empty string,
@@ -1710,6 +1714,8 @@ console.log(`Report directory is ${process.report.directory}`);
17101714added: v11.12.0
17111715-->
17121716
1717+ > Stability: 1 - Experimental
1718+
17131719* {string}
17141720
17151721Filename where the report is written. If set to the empty string, the output
@@ -1725,6 +1731,8 @@ console.log(`Report filename is ${process.report.filename}`);
17251731added: v11.8.0
17261732-->
17271733
1734+ > Stability: 1 - Experimental
1735+
17281736* ` err ` {Error} A custom error used for reporting the JavaScript stack.
17291737* Returns: {Object}
17301738
@@ -1748,6 +1756,8 @@ Additional documentation is available in the [report documentation][].
17481756added: v11.12.0
17491757-->
17501758
1759+ > Stability: 1 - Experimental
1760+
17511761* {boolean}
17521762
17531763If ` true ` , a diagnostic report is generated on fatal errors, such as out of
@@ -1762,6 +1772,8 @@ console.log(`Report on fatal error: ${process.report.reportOnFatalError}`);
17621772added: v11.12.0
17631773-->
17641774
1775+ > Stability: 1 - Experimental
1776+
17651777* {boolean}
17661778
17671779If ` true ` , a diagnostic report is generated when the process receives the
@@ -1776,6 +1788,8 @@ console.log(`Report on signal: ${process.report.reportOnSignal}`);
17761788added: v11.12.0
17771789-->
17781790
1791+ > Stability: 1 - Experimental
1792+
17791793* {boolean}
17801794
17811795If ` true ` , a diagnostic report is generated on uncaught exception.
@@ -1789,6 +1803,8 @@ console.log(`Report on exception: ${process.report.reportOnUncaughtException}`);
17891803added: v11.12.0
17901804-->
17911805
1806+ > Stability: 1 - Experimental
1807+
17921808* {string}
17931809
17941810The signal used to trigger the creation of a diagnostic report. Defaults to
@@ -1803,6 +1819,8 @@ console.log(`Report signal: ${process.report.signal}`);
18031819added: v11.8.0
18041820-->
18051821
1822+ > Stability: 1 - Experimental
1823+
18061824* ` filename ` {string} Name of the file where the report is written. This
18071825 should be a relative path, that will be appended to the directory specified in
18081826 ` process.report.directory ` , or the current working directory of the Node.js
0 commit comments