|
|
@ -59,7 +59,8 @@ public class StatsdProperties {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* How often gauges will be polled. When a gauge is polled, its value is recalculated
|
|
|
|
* How often gauges will be polled. When a gauge is polled, its value is recalculated
|
|
|
|
* and if the value has changed, it is sent to the StatsD server.
|
|
|
|
* and if the value has changed (or publishUnchangedMeters is true), it is sent to the
|
|
|
|
|
|
|
|
* StatsD server.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private Duration pollingFrequency = Duration.ofSeconds(10);
|
|
|
|
private Duration pollingFrequency = Duration.ofSeconds(10);
|
|
|
|
|
|
|
|
|
|
|
@ -68,6 +69,11 @@ public class StatsdProperties {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private Integer queueSize = Integer.MAX_VALUE;
|
|
|
|
private Integer queueSize = Integer.MAX_VALUE;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Send unchanged meters to the StatsD server.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
private Boolean publishUnchangedMeters;
|
|
|
|
|
|
|
|
|
|
|
|
public Boolean getEnabled() {
|
|
|
|
public Boolean getEnabled() {
|
|
|
|
return this.enabled;
|
|
|
|
return this.enabled;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -124,4 +130,12 @@ public class StatsdProperties {
|
|
|
|
this.queueSize = queueSize;
|
|
|
|
this.queueSize = queueSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Boolean getPublishUnchangedMeters() {
|
|
|
|
|
|
|
|
return this.publishUnchangedMeters;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setPublishUnchangedMeters(Boolean publishUnchangedMeters) {
|
|
|
|
|
|
|
|
this.publishUnchangedMeters = publishUnchangedMeters;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|