dog-statsy
A dogstatsd client.
Installation
$ npm install dog-statsy
Example
const Client = const http = const stats = {}
API
Client([opts])
Initialize a client with the given options:
host
[localhost]port
[8125]prefix
optional prefix ('.' is appended)tags
array of tags to include in every callbufferSize
optional buffer size, if not defined, it will send the data immediatelyflushInterval
optional, only valid when bufferSize is defined. It will flush the buffer after the interval in miliseconds (if not empty)
.gauge(name, val, [tags])
Send gauge value.
.meter(name, val, [tags])
Send meter value.
.set(name, val, [tags])
Send set value.
.count(name, val, [tags])
Send count value.
.incr(name, [val], [tags])
Increment by val
or 1.
.decr(name, [val], [tags])
Decrement by val
or 1.
.histogram(name, val, [tags])
Send histogram value.
.histogram(name)
Return histogram delta function.
.timer(name, val, [tags])
Send timer value.
.timer(name)
Return timer delta function.
.trace(name, [tags])
Return a trace object.
Trace
.step(name, [tags])
Adds a step to a trace.
.complete()
Completes a trace.
License
MIT