public interface Counters
Modifier and Type | Method and Description |
---|---|
void |
count(java.lang.String bucket,
double delta)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
double delta,
double sampleRate)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
double delta,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
double delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
int delta)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
int delta,
java.lang.Double sampleRate)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
int delta,
java.lang.Double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
int delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
long delta)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
long delta,
double sampleRate)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
long delta,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void |
count(java.lang.String bucket,
long delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Adjusts the specified counter by a given delta.
|
void count(java.lang.String bucket, int delta)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter byvoid count(java.lang.String bucket, int delta, java.lang.Double sampleRate)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be sentvoid count(java.lang.String bucket, int delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bytags
- map of tags to be added to the datavoid count(java.lang.String bucket, int delta, java.lang.Double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be senttags
- map of tags to be added to the datavoid count(java.lang.String bucket, long delta)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter byvoid count(java.lang.String bucket, long delta, double sampleRate)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be sentvoid count(java.lang.String bucket, long delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bytags
- map of tags to be added to the datavoid count(java.lang.String bucket, long delta, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be senttags
- map of tags to be added to the datavoid count(java.lang.String bucket, double delta)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter byvoid count(java.lang.String bucket, double delta, double sampleRate)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be sentvoid count(java.lang.String bucket, double delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bytags
- map of tags to be added to the datavoid count(java.lang.String bucket, double delta, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the counter to adjustdelta
- amount to adjust the counter bysampleRate
- percentage of count metric to be senttags
- map of tags to be added to the data