com.wavefront.agent.SharedMetricsRegistry 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;
import com.yammer.metrics.core.MetricsRegistry;
public class SharedMetricsRegistry extends MetricsRegistry {
private static final SharedMetricsRegistry INSTANCE = new SharedMetricsRegistry();
private SharedMetricsRegistry() {}
public static SharedMetricsRegistry getInstance() {
return INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy