io.dropwizard.metrics5.jmx.ObjectNameFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metrics-jmx Show documentation
Show all versions of metrics-jmx Show documentation
A set of classes which allow you to report metrics via JMX.
package io.dropwizard.metrics5.jmx;
import io.dropwizard.metrics5.MetricName;
import javax.management.ObjectName;
public interface ObjectNameFactory {
ObjectName createName(String type, String domain, MetricName name);
}