https://github.com/github/node-statsd
node.js client for Etsy'd StatsD server
https://github.com/github/node-statsd
Last synced: 5 months ago
JSON representation
node.js client for Etsy'd StatsD server
- Host: GitHub
- URL: https://github.com/github/node-statsd
- Owner: github
- License: mit
- Archived: true
- Fork: true (sivy/node-statsd)
- Created: 2011-08-01T23:04:48.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2015-02-27T10:51:19.000Z (about 11 years ago)
- Last Synced: 2024-09-25T21:09:01.034Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 116 KB
- Stars: 14
- Watchers: 26
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-statsd
A node.js client for [Etsy](http://etsy.com)'s [StatsD](https://github.com/etsy/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.