node-statsd
node-statsd copied to clipboard
node.js client for Etsy'd StatsD server
I am currently running the node-statsd in a docker container. I want to pass the metrics from the container in which the application is running to the container which is...
F
By a SOC2 requirement, we have to include a Pull Request template in our repos
Refs #77 This change allows clients to configure a custom `createSocket` method to use for socket construction. The example below shows how clients on newer versions of node, with statsd...
Greetings! I recently noticed that nodes udp library does a dns lookup on every `socket.send` call. It looks like newer versions of node allow callers to specify a custom `lookup`...
this is very helpful if many data points are send over the Network. In my use case reducing the UDP packets send by 19 times
When I try to use gauge for a graphite server, I don't get any errors, but the data is not saved.I use graphite:latest from docker, node-statsd version 0.1.1. Code snippet:...
The code ```js 'use strict' setInterval(() => { console.log('Still alive') }, 1000).unref() setTimeout(() => { console.log('Done') }, 500) ``` prints "Done" then exits. ``` $ node index.js Done $ ```...
I needs an opportunity to send raw text, can I use method `.send()` for it? Is so, I can add it to docs, otherwise I can make a pull request...
This PR adds support for TCP connections, which was included in the `etsy/statsd` library in version 0.8.0 (current). It adds a boolean 'tcp' option. If set to true, it will...