node.js client for Etsy'd StatsD server
Перейти к файлу
Aman Gupta f008117955 Create one UDP socket and re-use it 2011-08-02 19:57:16 -07:00
lib Create one UDP socket and re-use it 2011-08-02 19:57:16 -07:00
LICENSE add license 2011-02-24 18:25:45 -07:00
README.md fix bad url in example 2011-02-25 07:51:57 -07:00
package.json not sure what 'apac' was 2011-05-10 21:43:54 -07:00

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.