mirror of
https://github.com/github/node-statsd
synced 2026-07-21 12:03:52 +00:00
No description
- JavaScript 100%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
| lib | ||
| LICENSE | ||
| package.json | ||
| README.md | ||
node-statsd
A node.js client for Etsy's StatsD server.
This client will let you fire stats at your StatsD server from a node.js application.
% npm install node-statsd
% node
> require('statsd').StatsD
> c = new StatsD('example.org',8125)
{ host: 'example.org', port: 8125 }
> c.increment('node_test.int')
> c.decrement('node_test.int')
> c.timing('node_test.some_service.task.time', 500) // time in millis
License
node-statsd is licensed under the MIT license.