Socket
Socket
Sign inDemoInstall

librato-metrics

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

librato-metrics

A node module for sending data to librato metrics.


Version published
Weekly downloads
11
increased by175%
Maintainers
2
Weekly downloads
 
Created
Source

librato-metrics

A node module for sending data to librato metrics.

v0.0.7

Install

npm install librato-metrics

Example

var client = require('librato-metrics').createClient({
  email: 'user@example.org',
  token: '...',
});

client.post('/metrics', {
  gauges: [
    {name: 'metric1', value: 123},
  ],
}, function(err, response) {
  if (err) throw err;

  console.log(response);
});

##Test

  make test

License

Licensed under the MIT license.

FAQs

Package last updated on 18 Jan 2013

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