我在我的代码中使用dropwizard gauge功能如下:
private AtomicInteger heapUsageAfterCollectionThresholdExceeded;
new Gauge<Integer>() {
@Override
public Integer getValue() {
return heapUsageThresholdExceeded.get();
}
现在开始将heapUsageThresholdExceeded的值推送到graphite。我期待在石墨中看到整数值。但在石墨中,我看到报告的值为小数点值(0.15)。我有以下问题:
ref:https://metrics.dropwizard.io/3.1.0/apidocs/com/codahale/metrics/Gauge.html
要回答您的第二个问题,它取决于报告指标的频率。 default frequency是1分钟
您可以在配置文件中指定频率。例如 -
metrics:
reporters:
- type: graphite
host: localhost
port: 2003
prefix: example
frequency: 1m