pstats

0.1.1 • Public • Published

This module applies patches Q library to extend promises with stats method.

var StatsD = require('node-statsd').StatsD;
var statsClient = new StatsD({prefix: 'project.'});
 
require('pstats')(statsClient);
 
longAsyncOperation()
    .then(anotherLongAsyncOperation)
    .stats('operations.xxx');

This will send following stats to graphite:

Counters:
    project.operations.xxx.attempted +1
    project.operations.xxx.succeeded +1
    or
    project.operations.xxx.failed +1
Timing:
    project.operations.xxx dt

Start time is the moment when your promise chain is being constructed (stats method called).

Package Sidebar

Install

npm i pstats

Weekly Downloads

3

Version

0.1.1

License

MIT

Last publish

Collaborators

  • tim.borodin