monitor-plugin-process
v1.0.0
Published
Middleware plugin which collects current process metrics.
Downloads
5
Maintainers
Readme
Process Metrics
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
Copyright
Copyright © 2014. Athan Reines.