public interface StatsDClient
See the spec : https://github.com/b/statsd_spec
| Modifier and Type | Method and Description |
|---|---|
void |
count(byte[] aspect,
long delta,
double sampleRate,
Tag... tags)
Adjusts the specified counter by a given delta.
|
void |
count(byte[] aspect,
long delta,
Tag... tags)
Adjusts the specified counter by a given delta.
|
void |
gauge(byte[] aspect,
long value,
Tag... tags)
Records the latest fixed value for the specified named gauge.
|
void |
time(byte[] aspect,
long timeInMs,
Tag... tags)
Records an execution time in milliseconds for the specified named operation.
|
void gauge(byte[] aspect,
long value,
Tag... tags)
aspect - the name of the gaugevalue - the new reading of the gaugevoid count(byte[] aspect,
long delta,
Tag... tags)
aspect - the name of the counter to adjustdelta - the amount to adjust the counter bytags - array of tags to be added to the datavoid count(byte[] aspect,
long delta,
double sampleRate,
Tag... tags)
aspect - the name of the counter to adjustdelta - the amount to adjust the counter bysampleRate - percentage of time metric to be senttags - array of tags to be added to the datavoid time(byte[] aspect,
long timeInMs,
Tag... tags)
aspect - the name of the timed operationtimeInMs - the time in millisecondstags - array of tags to be added to the dataCopyright © 2018. All rights reserved.