Package com.yammer.metrics.core

Examples of com.yammer.metrics.core.Counter


    }

    @Test
    public void testUpdateMetric_Counter_Clear() {
        jsonMetric.setType("counter");
        Counter metric = (Counter) metricCatcher.createMetric(jsonMetric);

        metricCatcher.updateMetric(metric, 1);
        assertEquals(1, metric.count());

        metricCatcher.updateMetric(metric, 0);
        assertEquals(0, metric.count());
    }
View Full Code Here

TOP

Related Classes of com.yammer.metrics.core.Counter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.