com.wavefront.agent.logsharvesting.ChangeableGauge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy Show documentation
Show all versions of proxy Show documentation
Service for batching and relaying metric traffic to Wavefront
package com.wavefront.agent.logsharvesting;
import com.yammer.metrics.core.Gauge;
/** @author Mori Bellamy ([email protected]) */
public class ChangeableGauge extends Gauge {
private T value;
public void setValue(T value) {
this.value = value;
}
@Override
public T value() {
return this.value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy