node-statsd
node-statsd copied to clipboard
node.js client for Etsy'd StatsD server
If you specify tags and you send the metric agains the StatsD server instead of the DataDog-StatsD server you get the following error: 28 May 10:02:26 - DEBUG: Bad line:...
This one looks so strange to me. I'm assuming this problem is because of StatD because once I remove it from code, it is working super fine. Here is the...
Sometimes the API abstraction doesn't help much. With this functionality, the user can directly send a message across the wire. This can be useful when a statsd server supports different...
I know I shouldn't have called increment(0) but let me tell you it took a long time to find that bug ! Because increment (and decrement) compare delta to 0/null...
We need to be able to support incrementing or decrementing a Counter by 0. The current code `value || 1` where `value = 0` will always evaluate to 1. This...
This ports the functionality from https://github.com/msiebuhr/node-statsd-client for aggregated packets. It shows great performance improvement. I ran perfTest/test.js to measure the time required of sending out 100,000 packets. A buffer size...
Hello! Some justification for this throw: Currently if the user passes a hostname to options.host without the cache flag on, the module will try to resolve the DNS name during...
Hey, I would like to intercept the outgoing metrics and for example prevent some of them to be really send. What do you think, would it be ok to directly...
Can you let me know how to add cpu,host=serverA,region=us_west value=0.64 in statsd timer ``` var StatsD = require('node-statsd'), client = new StatsD(); // Timing: sends a timing command with the...