public interface BatchMetrics
| Modifier and Type | Method and Description |
|---|---|
void |
decrement(String metricName)
Decrement the specified counter by 1.
|
void |
decrement(String metricName,
Long value)
Decrement the specified counter by the given value.
|
void |
decrementNonTransactional(String metricName)
Decrement the specified counter by 1.
|
void |
decrementNonTransactional(String metricName,
Long value)
Decrement the specified counter by the given value.
|
void |
increment(String metricName)
Increment the specified counter by 1.
|
void |
increment(String metricName,
Long value)
Increment the specified counter by the given value.
|
void |
incrementNonTransactional(String metricName)
Increment the specified counter by 1.
|
void |
incrementNonTransactional(String metricName,
Long value)
Increment the specified counter by the given value.
|
void |
reset(String metricName)
Reset the specified counter.
|
void |
resetNonTransactional(String metricName)
Reset the specified counter.
|
void |
submit(String metricName,
double value)
Set the specified gauge value.
|
void |
submitNonTransactional(String metricName,
double value)
Set the specified gauge value
|
void increment(String metricName)
metricName - the name of the countervoid increment(String metricName, Long value)
metricName - the name of the countervalue - the amount to increment byvoid decrement(String metricName)
metricName - the name of the countervoid decrement(String metricName, Long value)
metricName - the name of the countervalue - the amount to decrement byvoid reset(String metricName)
metricName - the name of the countervoid submit(String metricName, double value)
metricName - the name of the gauge to setvalue - the value of the gaugevoid incrementNonTransactional(String metricName)
metricName - the name of the countervoid incrementNonTransactional(String metricName, Long value)
metricName - the name of the countervalue - the amount to increment byvoid decrementNonTransactional(String metricName)
metricName - the name of the countervoid decrementNonTransactional(String metricName, Long value)
metricName - the name of the countervalue - the amount to decrement byvoid resetNonTransactional(String metricName)
metricName - the name of the countervoid submitNonTransactional(String metricName, double value)
metricName - the name of the gauge to setvalue - the value of the gaugeCopyright © 2016. All Rights Reserved.