This package has been deprecated

Author message:

Please upgrade to npmjs.org/node-report

nodereport

1.0.8 • Public • Published

nodereport

This package is obsolete, please use https://npmjs.org/node-report

Delivers a human-readable diagnostic summary, written to file.

The report is intended for development, test and production use, to capture and preserve information for problem determination. It includes JavaScript and native stack traces, heap statistics, platform information and resource usage etc. With the report enabled, reports can be triggered on unhandled exceptions, fatal errors, signals and calls to a JavaScript API.

Supports Node.js v4, v6 and v7 on Linux, MacOS, Windows and AIX.

Usage

npm install nodereport

This will allow a NodeReport to be triggered via an API call from a JavaScript application.

var nodereport = require('nodereport');
nodereport.triggerReport();

Content of the NodeReport consists of a header section containing the event type, date, time, PID and Node version, sections containing JavaScript and native stack traces, a section containing V8 heap information, a section containing libuv handle information and an OS platform information section showing CPU and memory usage and system limits. An example NodeReport can be triggered using the Node.js REPL:

$ node
> nodereport = require('nodereport')
> nodereport.triggerReport()
Writing Node.js report to file: NodeReport.20161020.091102.8480.001.txt
Node.js report completed
>

When a NodeReport is triggered, start and end messages are issued to stderr and the filename of the report is returned to the caller. The default filename includes the date, time, PID and a sequence number. Alternatively, a filename can be specified as a parameter on the triggerReport() call.

nodereport.triggerReport("myReportName");

A NodeReport can also be triggered automatically on unhandled exceptions, fatal error events (for example out of memory errors), and signals (Linux/MacOS only). Triggering on these events can be enabled using the following API call:

nodereport.setEvents("exception+fatalerror+signal+apicall");

Configuration

Additional configuration is available using the following APIs:

nodereport.setSignal("SIGUSR2|SIGQUIT");
nodereport.setFileName("stdout|stderr|<filename>");
nodereport.setDirectory("<full path>");
nodereport.setCoreDump("yes|no");
nodereport.setVerbose("yes|no");

Configuration on module Initialization is also available via environment variables:

export NODEREPORT_EVENTS=exception+fatalerror+signal+apicall
export NODEREPORT_SIGNAL=SIGUSR2|SIGQUIT
export NODEREPORT_FILENAME=stdout|stderr|<filename>
export NODEREPORT_DIRECTORY=<full path>
export NODEREPORT_COREDUMP=yes|no
export NODEREPORT_VERBOSE=yes|no

Examples

To see examples of NodeReports generated from these events you can run the demonstration applications provided in the nodereport github repository. These are Node.js applications which will prompt you to trigger the required event.

  1. api.js - NodeReport triggered by JavaScript API call.
  2. exception.js - NodeReport triggered by unhandled exception.
  3. fatalerror.js - NodeReport triggered by fatal error on JavaScript heap out of memory.
  4. loop.js - looping application, NodeReport triggered using kill -USR2 <pid>.

License

Licensed under the MIT License.

Dependencies (1)

Dev Dependencies (1)

Package Sidebar

Install

npm i nodereport

Weekly Downloads

1

Version

1.0.8

License

MIT

Last publish

Collaborators

  • mhdawson1
  • rnchamberlain
  • hhellyer