Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Node.js process.report.signal Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The process.report is an object whose methods are used to generate diagnostic reports for the current process. The signal used to trigger the creation of a diagnostic report. Defaults to ‘SIGUSR2’.

Syntax:

process.report.signal

Return Value: This property returns the generated diagnostic reports for the current process.

Below examples illustrate the use of the process.report.signal property in Node.js:

Example:

index.js




// Node.js program to demonstrate the 
// process.report.signal Property 
     
// Include process module 
const process = require('process'); 
    
// Printing process.report.signal property value 
console.log(`Report signal: ${process.report.signal}`);

Command to run:

node index.js

Output:

Note: The above program will compile and run by using the node filename.js command.

Reference:https://nodejs.org/api/process.html#process_process_report_signal

My Personal Notes arrow_drop_up
Last Updated : 08 Mar, 2021
Like Article
Save Article
Similar Reads
Related Tutorials