Examples of rateUnit()


Examples of com.yammer.metrics.core.Meter.rateUnit()

        assertEquals(Meter.class, metric.getClass());

        Meter meterMetric = ((Meter) metric);
        // All metrics are in minutes :-( plz2fix
        assertEquals(TimeUnit.MINUTES, meterMetric.rateUnit());
    }

    @Test
    public void testCreateMetric_ShortName() {
        String name = "test" + Math.random();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.