use of com.hazelcast.internal.metrics.impl.MetricsRegistryImpl in project hazelcast by hazelcast.
the class RuntimeMetricSetTest method setup.
@Before
public void setup() {
metricsRegistry = new MetricsRegistryImpl(Logger.getLogger(MetricsRegistryImpl.class), ProbeLevel.INFO);
RuntimeMetricSet.register(metricsRegistry);
runtime = Runtime.getRuntime();
}
use of com.hazelcast.internal.metrics.impl.MetricsRegistryImpl in project hazelcast by hazelcast.
the class ThreadMetricSetTest method setup.
@Before
public void setup() {
metricsRegistry = new MetricsRegistryImpl(Logger.getLogger(MetricsRegistryImpl.class), INFO);
ThreadMetricSet.register(metricsRegistry);
}
use of com.hazelcast.internal.metrics.impl.MetricsRegistryImpl in project hazelcast by hazelcast.
the class ClassLoadingMetricSetTest method setup.
@Before
public void setup() {
metricsRegistry = new MetricsRegistryImpl(Logger.getLogger(MetricsRegistryImpl.class), INFO);
ClassLoadingMetricSet.register(metricsRegistry);
}
use of com.hazelcast.internal.metrics.impl.MetricsRegistryImpl in project hazelcast by hazelcast.
the class FileMetricSetTest method setup.
@Before
public void setup() {
metricsRegistry = new MetricsRegistryImpl(Logger.getLogger(MetricsRegistryImpl.class), INFO);
FileMetricSet.register(metricsRegistry);
}
Aggregations