monitor-plugin-process

1.0.0 • Public • Published

Process Metrics

NPM version Build Status Coverage Status Dependencies

Middleware plugin which collects current process metrics.

Installation

$ npm install monitor-plugin-process

Usage

To use the module,

var plugin = require( 'monitor-plugin-process' );

The module exports the following method...

plugin( obj, clbk )

Appends process metrics to an object and then invokes the provided callback.

plugin( {}, function next() {});

Examples

var plugin = require( 'monitor-plugin-process' );
 
// Initialize a monitor object:
var monitor = {};
 
// Run the plugin:
plugin( monitor, function next() {
    console.log( JSON.stringify( monitor ) );
});

To run the example code from the top-level application directory,

$ node ./examples/index.js

Notes

The plugin will append a process property to the provided object. If a process property already exists, the property value will be overwritten.

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.


Copyright

Copyright © 2014. Athan Reines.

Package Sidebar

Install

npm i monitor-plugin-process

Weekly Downloads

3

Version

1.0.0

License

none

Last publish

Collaborators

  • kgryte