Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@alexghr/stats

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alexghr/stats

Track your functions in style!

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

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);
});

FAQs

Package last updated on 20 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc