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

aggregate-metric-logger

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aggregate-metric-logger

aggregate metrics in memory for logging

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
increased by25%
Maintainers
1
Weekly downloads
 
Created
Source

aggregate-metric-logger

aggregate metrics in memory and log them every minute

Setup

Set METRIC_LOGGER_ENABLED env variable to true for aggregate-metric-logger to start collecting and logging measuremnts.

To change the default aggregate-metric-logger namespace used for logs, set METRIC_LOGGER_NAMESPACE to a custom value.

Usage

If you want aggregate measuremts about something you need to simply call the call method for each value:

const metrictLogger = require('aggregate-metric-logger')

metricLogger.count('thing-to-count', 14)
metricLogger.count('thing-to-count', 20)

Every minute metric logger will log min, max, sum, count and avarage aggregated metrics for each measured tags. (Uses @emartech/json-logger behind the scenes for logging).

Measuring durations

For duration measuremts, there are two convinience methods: start, and stop;

You start the measurement with start, the counted value for aggregation will be the duration between this start and the matcing stop call;

function exampleIOHeavyFunction() {
  const measurementId = metricLogger.start('tag-for-the-measuement');
  const result = db.findItems();
  metricLogger.stop(measurementId);
  return result;
}

Keywords

FAQs

Package last updated on 27 Sep 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