public interface Gauges
Modifier and Type | Method and Description |
---|---|
void |
recordDelta(java.lang.String bucket,
double delta)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
double delta,
double sampleRate)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
double delta,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordDelta(java.lang.String bucket,
double delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordDelta(java.lang.String bucket,
int delta)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
int delta,
double sampleRate)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
int delta,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordDelta(java.lang.String bucket,
int delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordDelta(java.lang.String bucket,
long delta)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
long delta,
double sampleRate)
Records a change in the value of the specified named gauge.
|
void |
recordDelta(java.lang.String bucket,
long delta,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordDelta(java.lang.String bucket,
long delta,
java.util.Map<java.lang.String,java.lang.String> tags)
Records a change in the value of the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
double value)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
double value,
double sampleRate)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
double value,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
double value,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
int value)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
int value,
double sampleRate)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
int value,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
int value,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
long value)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
long value,
double sampleRate)
Records the latest fixed value for the specified named gauge.
|
void |
recordValue(java.lang.String bucket,
long value,
double sampleRate,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void |
recordValue(java.lang.String bucket,
long value,
java.util.Map<java.lang.String,java.lang.String> tags)
Records the latest fixed value for the specified named gauge with tags.
|
void recordValue(java.lang.String bucket, int value)
bucket
- name of the gaugevalue
- new reading of the gaugevoid recordValue(java.lang.String bucket, int value, double sampleRate)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordValue(java.lang.String bucket, int value, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugetags
- map of tags to be added to the datavoid recordValue(java.lang.String bucket, int value, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the datavoid recordValue(java.lang.String bucket, long value)
bucket
- name of the gaugevalue
- new reading of the gaugevoid recordValue(java.lang.String bucket, long value, double sampleRate)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordValue(java.lang.String bucket, long value, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugetags
- map of tags to be added to the datavoid recordValue(java.lang.String bucket, long value, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the datavoid recordValue(java.lang.String bucket, double value)
bucket
- name of the gaugevalue
- new reading of the gaugevoid recordValue(java.lang.String bucket, double value, double sampleRate)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordValue(java.lang.String bucket, double value, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugetags
- map of tags to be added to the datavoid recordValue(java.lang.String bucket, double value, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugevalue
- new reading of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, int delta)
bucket
- name of the gaugedelta
- change in the value of the gaugevoid recordDelta(java.lang.String bucket, int delta, double sampleRate)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordDelta(java.lang.String bucket, int delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugetags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, int delta, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, long delta)
bucket
- name of the gaugedelta
- change in the value of the gaugevoid recordDelta(java.lang.String bucket, long delta, double sampleRate)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordDelta(java.lang.String bucket, long delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugetags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, long delta, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, double delta)
bucket
- name of the gaugedelta
- change in the value of the gaugevoid recordDelta(java.lang.String bucket, double delta, double sampleRate)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be sentvoid recordDelta(java.lang.String bucket, double delta, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugetags
- map of tags to be added to the datavoid recordDelta(java.lang.String bucket, double delta, double sampleRate, java.util.Map<java.lang.String,java.lang.String> tags)
bucket
- name of the gaugedelta
- change in the value of the gaugesampleRate
- percentage of gauge metric to be senttags
- map of tags to be added to the data