Polish "Add publishUnchangedMeters StatsD support"

Closes gh-11967
pull/11893/merge
Phillip Webb 7 years ago
parent e02eba2a33
commit 601157f552

@ -59,8 +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 (or publishUnchangedMeters is true), * and if the value has changed (or publishUnchangedMeters is true), it is sent to the
* it is sent to the StatsD server. * StatsD server.
*/ */
private Duration pollingFrequency = Duration.ofSeconds(10); private Duration pollingFrequency = Duration.ofSeconds(10);
@ -72,7 +72,7 @@ public class StatsdProperties {
/** /**
* Send unchanged meters to the StatsD server. * Send unchanged meters to the StatsD server.
*/ */
private Boolean publishUnchangedMeters = true; private Boolean publishUnchangedMeters;
public Boolean getEnabled() { public Boolean getEnabled() {
return this.enabled; return this.enabled;
@ -137,4 +137,5 @@ public class StatsdProperties {
public void setPublishUnchangedMeters(Boolean publishUnchangedMeters) { public void setPublishUnchangedMeters(Boolean publishUnchangedMeters) {
this.publishUnchangedMeters = publishUnchangedMeters; this.publishUnchangedMeters = publishUnchangedMeters;
} }
} }

@ -80,6 +80,8 @@ public class StatsdPropertiesConfigAdapter
@Override @Override
public boolean publishUnchangedMeters() { public boolean publishUnchangedMeters() {
return get(StatsdProperties::getPublishUnchangedMeters, StatsdConfig.super::publishUnchangedMeters); return get(StatsdProperties::getPublishUnchangedMeters,
StatsdConfig.super::publishUnchangedMeters);
} }
} }

Loading…
Cancel
Save