Coder Social home page Coder Social logo

node-stats's Introduction

stats

Track your functions in style!

Example

const { createStatsTracker } = require('@alexghr/stats');
const { trackStats, stats } = createStatsTracker();

// Setup stats collection
stats.on('call', (name) => console.log(`${name} was called`));
stats.on('call_resolved', (name, time) => console.log(`${name} took ${time}ms to run`));
stats.on('call_rejected', (name, time) => console.log(`Oh no! ${name} crashed after ${time}ms`));

class AwesomeService {
  doWork() {
    return new Promise((resolve, reject) => {
      console.log('working on something important....');
      setTimeout(() => resolve(42), 1000);
    });
  }
}

// this an example of tracking all of the functions on an object
// but it works in the same way when `target` is just a function
const service = trackStats({ target: new AwesomeService(), name: 'awesome_service' });
service.doWork().then((result) => console.log(`result is: ${result}`));

// Prints:
// working on something important....
// awesome_service.doWork was called
// result is: 42
// awesome_service.doWork took 1003.0209ms to run

You can easily connect it to metrics-collecting services. Here's an example using it with node-statsd:

const { createStatsTracker } = require('@alexghr/stats');
// push stats into a StatsD server
const StatsD = require('node-statsd');

const statsd = new StatsD({
  host: 'localhost',
  port: 8125,
  prefix: 'example.'
});

const { trackStats, stats } = createStatsTracker();

stats.on('call', (name) => statsd.increment(name));
stats.on('call_resolved', (name, time) => statsd.timing(name, time));
stats.on('call_rejected', (name, time) => {
  statsd.increment(`${name}.error`);
  statsd.timing(`${name}.error`, time);
});

node-stats's People

Contributors

alexghr avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.