public interface StatsDClient
Three key methods are provided for the submission of data-points for the application under scrutiny:
incrementCounter(java.lang.String, java.lang.String...) - adds one to the value of the specified named counterrecordGaugeValue(java.lang.String, double, java.lang.String...) - records the latest fixed value for the specified named gaugerecordExecutionTime(java.lang.String, long, java.lang.String...) - records an execution time in milliseconds for the specified named operation| Modifier and Type | Method and Description |
|---|---|
void |
count(String aspect,
long delta,
String... tags)
Adjusts the specified counter by a given delta.
|
void |
decrement(String aspect,
String... tags)
Convenience method equivalent to
decrementCounter(String, String[]). |
void |
decrementCounter(String aspect,
String... tags)
Decrements the specified counter by one.
|
void |
gauge(String aspect,
double value,
String... tags)
Convenience method equivalent to
recordGaugeValue(String, double, String[]). |
void |
gauge(String aspect,
long value,
String... tags)
Convenience method equivalent to
recordGaugeValue(String, long, String[]). |
void |
histogram(String aspect,
double value,
String... tags)
Convenience method equivalent to
recordHistogramValue(String, double, String[]). |
void |
histogram(String aspect,
long value,
String... tags)
Convenience method equivalent to
recordHistogramValue(String, long, String[]). |
void |
increment(String aspect,
String... tags)
Convenience method equivalent to
incrementCounter(String, String[]). |
void |
incrementCounter(String aspect,
String... tags)
Increments the specified counter by one.
|
void |
recordEvent(Event event,
String... tags)
Records an event
|
void |
recordExecutionTime(String aspect,
long timeInMs,
String... tags)
Records an execution time in milliseconds for the specified named operation.
|
void |
recordGaugeValue(String aspect,
double value,
String... tags)
Records the latest fixed value for the specified named gauge.
|
void |
recordGaugeValue(String aspect,
long value,
String... tags)
Records the latest fixed value for the specified named gauge.
|
void |
recordHistogramValue(String aspect,
double value,
String... tags)
Records a value for the specified named histogram.
|
void |
recordHistogramValue(String aspect,
long value,
String... tags)
Records a value for the specified named histogram.
|
void |
recordServiceCheckRun(ServiceCheck sc)
Records a run status for the specified named service check.
|
void |
recordSetValue(String aspect,
String value,
String... tags)
Records a value for the specified set.
|
void |
serviceCheck(ServiceCheck sc)
Convenience method equivalent to
recordServiceCheckRun(ServiceCheck sc). |
void |
stop()
Cleanly shut down this StatsD client.
|
void |
time(String aspect,
long value,
String... tags)
Convenience method equivalent to
recordExecutionTime(String, long, String[]). |
void stop()
void count(String aspect, long delta, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the counter to adjustdelta - the amount to adjust the counter bytags - array of tags to be added to the datavoid incrementCounter(String aspect, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the counter to incrementtags - array of tags to be added to the datavoid increment(String aspect, String... tags)
incrementCounter(String, String[]).void decrementCounter(String aspect, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the counter to decrementtags - array of tags to be added to the datavoid decrement(String aspect, String... tags)
decrementCounter(String, String[]).void recordGaugeValue(String aspect, double value, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the gaugevalue - the new reading of the gaugevoid gauge(String aspect, double value, String... tags)
recordGaugeValue(String, double, String[]).void recordGaugeValue(String aspect, long value, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the gaugevalue - the new reading of the gaugevoid gauge(String aspect, long value, String... tags)
recordGaugeValue(String, long, String[]).void recordExecutionTime(String aspect, long timeInMs, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the timed operationtimeInMs - the time in millisecondstags - array of tags to be added to the datavoid time(String aspect, long value, String... tags)
recordExecutionTime(String, long, String[]).void recordHistogramValue(String aspect, double value, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the histogramvalue - the value to be incorporated in the histogramtags - array of tags to be added to the datavoid histogram(String aspect, double value, String... tags)
recordHistogramValue(String, double, String[]).void recordHistogramValue(String aspect, long value, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the histogramvalue - the value to be incorporated in the histogramtags - array of tags to be added to the datavoid histogram(String aspect, long value, String... tags)
recordHistogramValue(String, long, String[]).void recordEvent(Event event, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
event - The event to recordtags - array of tags to be added to the datavoid recordServiceCheckRun(ServiceCheck sc)
sc - the service check objectvoid serviceCheck(ServiceCheck sc)
recordServiceCheckRun(ServiceCheck sc).void recordSetValue(String aspect, String value, String... tags)
This method is a DataDog extension, and may not work with other servers.
This method is non-blocking and is guaranteed not to throw an exception.
aspect - the name of the setvalue - the value to tracktags - array of tags to be added to the dataCopyright © 2016. All Rights Reserved.