All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wavefront.agent.SharedMetricsRegistry Maven / Gradle / Ivy

There is a newer version: 9999.0
Show newest version
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