use of org.apache.ignite.internal.processors.metric.impl.BooleanMetricImpl in project ignite by apache.
the class MetricsSelfTest method testBooleanGauges.
/**
*/
@Test
public void testBooleanGauges() throws Exception {
BooleanMetricImpl bg = mreg.booleanMetric("bg", "test");
bg.value(true);
assertTrue(bg.value());
bg.reset();
assertFalse(bg.value());
}
Aggregations