Package com.jitlogic.zorka.common.tracedata

Examples of com.jitlogic.zorka.common.tracedata.Metric


        Assert.assertNotNull(samples);
        Assert.assertEquals(2, samples.size());

        for (PerfSample sample : samples) {
            Assert.assertTrue("Should have non-zero metric ID", sample.getMetricId() > 0);
            Metric metric = agentInstance.getMetricsRegistry().getMetric(sample.getMetricId());
            Assert.assertTrue("Template should have non-zero metric ID", metric.getTemplate().getId() > 0);
        }
    }
View Full Code Here

TOP

Related Classes of com.jitlogic.zorka.common.tracedata.Metric

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.