|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface StatsDClient
Describes a client connection to a StatsD server, which may be used to post metrics in the form of counters, timers, and gauges.
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
| Method Summary | |
|---|---|
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 |
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 |
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[]). |
| Method Detail |
|---|
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 data
void 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 data
void 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 data
void 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 gauge
void 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 gauge
void 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 data
void 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 data
void 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 data
void histogram(String aspect,
long value,
String... tags)
recordHistogramValue(String, long, String[]).
void recordServiceCheckRun(ServiceCheck sc)
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.
sc - the service check objectvoid serviceCheck(ServiceCheck sc)
recordServiceCheckRun(ServiceCheck sc).
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||