Search in sources :

Example 71 with StatsEngine

use of com.newrelic.agent.stats.StatsEngine in project newrelic-java-agent by newrelic.

the class InstrumentTestUtils method verifyCountMetric.

public static void verifyCountMetric(Map<String, Integer> expected) {
    StatsEngine statsEngine = AgentHelper.getDefaultStatsEngine();
    verifyCountMetric(expected, statsEngine);
}
Also used : StatsEngine(com.newrelic.agent.stats.StatsEngine)

Example 72 with StatsEngine

use of com.newrelic.agent.stats.StatsEngine in project newrelic-java-agent by newrelic.

the class InstrumentTestUtils method getAndClearMetricData.

public static Map<String, Integer> getAndClearMetricData() {
    StatsEngine statsEngine = AgentHelper.getDefaultStatsEngine();
    List<MetricData> data = statsEngine.getMetricData(new MockNormalizer());
    Map<String, Integer> dataMap = new HashMap<>();
    for (MetricData metricData : data) {
        StatsBase stats = metricData.getStats();
        if (stats instanceof CountStats) {
            dataMap.put(metricData.getMetricName().getName(), ((CountStats) stats).getCallCount());
        } else {
            dataMap.put(metricData.getMetricName().getName(), 0);
        }
    }
    return dataMap;
}
Also used : HashMap(java.util.HashMap) CountStats(com.newrelic.agent.stats.CountStats) StatsBase(com.newrelic.agent.stats.StatsBase) StatsEngine(com.newrelic.agent.stats.StatsEngine) MockNormalizer(com.newrelic.agent.MockNormalizer) MetricData(com.newrelic.agent.MetricData)

Example 73 with StatsEngine

use of com.newrelic.agent.stats.StatsEngine in project newrelic-java-agent by newrelic.

the class RPMServiceTest method doHarvest.

private void doHarvest() throws Exception {
    List<String> appNames = singletonList("MyApplication");
    RPMService svc = new RPMService(appNames, null, null, Collections.<AgentConnectionEstablishedListener>emptyList());
    svc.launch();
    synchronized (this) {
        wait(1000);
    }
    StatsEngine harvestStatsEngine = new StatsEngineImpl();
    try {
        for (int i = 0; i < 1000; i++) {
            harvestStatsEngine.getResponseTimeStats(MetricNames.EXTERNAL_ALL).recordResponseTime(66, TimeUnit.MILLISECONDS);
        }
        svc.harvest(harvestStatsEngine);
        Stats stats3 = harvestStatsEngine.getStats(MetricNames.AGENT_METRICS_COUNT);
        assertEquals(0, stats3.getCallCount());
        ResponseTimeStats stats = harvestStatsEngine.getResponseTimeStats(MetricNames.SUPPORTABILITY_METRIC_HARVEST_TRANSMIT);
        assertEquals(1, stats.getCallCount());
        assertTrue(stats.getTotal() > 0);
        Stats stats2 = harvestStatsEngine.getStats(MetricNames.SUPPORTABILITY_METRIC_HARVEST_COUNT);
        assertEquals(1, stats2.getCallCount());
    } finally {
        svc.shutdown();
    }
}
Also used : ResponseTimeStats(com.newrelic.agent.stats.ResponseTimeStats) StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) ResponseTimeStats(com.newrelic.agent.stats.ResponseTimeStats) Stats(com.newrelic.agent.stats.Stats) StatsEngine(com.newrelic.agent.stats.StatsEngine)

Example 74 with StatsEngine

use of com.newrelic.agent.stats.StatsEngine in project newrelic-java-agent by newrelic.

the class J2EEStatsAttributeTest method addJmxValueJdbcTest.

@Test
public void addJmxValueJdbcTest() throws MalformedObjectNameException {
    JDBCStats count = new JDBCStats() {

        @Override
        public Statistic[] getStatistics() {
            return new Statistic[0];
        }

        @Override
        public String[] getStatisticNames() {
            return null;
        }

        @Override
        public Statistic getStatistic(String statisticName) {
            return null;
        }

        @Override
        public JDBCConnectionStats[] getConnections() {
            return new JDBCConnectionStats[0];
        }

        @Override
        public JDBCConnectionPoolStats[] getConnectionPools() {
            return new JDBCConnectionPoolStats[] { new TestJdbcConnectionPool() };
        }
    };
    Attribute att = new Attribute("stats", count);
    J2EEStatsAttributeProcessor processor = new J2EEStatsAttributeProcessor();
    StatsEngine engine = new StatsEngineImpl();
    processor.process(engine, new ObjectInstance("tezt:type=1", "test"), att, "JMX/Test", new HashMap<String, Float>());
    // check count stats
    Assert.assertEquals(77, engine.getStats("JMX/Test/Create").getTotal(), .001);
    Assert.assertEquals(1, engine.getStats("JMX/Test/Create").getCallCount(), .001);
    Assert.assertEquals(9, engine.getStats("JMX/Test/Close").getTotal(), .001);
    Assert.assertEquals(1, engine.getStats("JMX/Test/Close").getCallCount(), .001);
    // check time stats
    Assert.assertEquals(12, engine.getResponseTimeStats("JMX/Test/WaitTime").getMaxCallTime(), .001);
    Assert.assertEquals(8, engine.getResponseTimeStats("JMX/Test/WaitTime").getMinCallTime(), .001);
    Assert.assertEquals(2, engine.getResponseTimeStats("JMX/Test/WaitTime").getCallCount(), .001);
    Assert.assertEquals(6, engine.getResponseTimeStats("JMX/Test/UserTime").getMaxCallTime(), .001);
    Assert.assertEquals(4, engine.getResponseTimeStats("JMX/Test/UserTime").getMinCallTime(), .001);
    Assert.assertEquals(2, engine.getResponseTimeStats("JMX/Test/UserTime").getCallCount(), .001);
}
Also used : StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) Attribute(javax.management.Attribute) JDBCConnectionStats(javax.management.j2ee.statistics.JDBCConnectionStats) ObjectInstance(javax.management.ObjectInstance) JDBCStats(javax.management.j2ee.statistics.JDBCStats) StatsEngine(com.newrelic.agent.stats.StatsEngine) CountStatistic(javax.management.j2ee.statistics.CountStatistic) RangeStatistic(javax.management.j2ee.statistics.RangeStatistic) TimeStatistic(javax.management.j2ee.statistics.TimeStatistic) BoundedRangeStatistic(javax.management.j2ee.statistics.BoundedRangeStatistic) BoundaryStatistic(javax.management.j2ee.statistics.BoundaryStatistic) Statistic(javax.management.j2ee.statistics.Statistic) JDBCConnectionPoolStats(javax.management.j2ee.statistics.JDBCConnectionPoolStats) Test(org.junit.Test)

Example 75 with StatsEngine

use of com.newrelic.agent.stats.StatsEngine in project newrelic-java-agent by newrelic.

the class J2EEStatsAttributeTest method processStatRangeTest.

@Test
public void processStatRangeTest() {
    RangeStatistic count = new RangeStatistic() {

        @Override
        public String getUnit() {
            return null;
        }

        @Override
        public long getStartTime() {
            return 0;
        }

        @Override
        public String getName() {
            return "LiveCount";
        }

        @Override
        public long getLastSampleTime() {
            return 0;
        }

        @Override
        public String getDescription() {
            return null;
        }

        @Override
        public long getLowWaterMark() {
            return 0;
        }

        @Override
        public long getHighWaterMark() {
            return 10;
        }

        @Override
        public long getCurrent() {
            return 9;
        }
    };
    Attribute att = new Attribute("stats.LiveCount", count);
    StatsEngine statsEngine = new StatsEngineImpl();
    J2EEStatsAttributeProcessor.processStatistic(statsEngine, "Jmx/Test", att, count);
    Assert.assertEquals(9, statsEngine.getStats("Jmx/Test/LiveCount").getTotal(), .001);
}
Also used : RangeStatistic(javax.management.j2ee.statistics.RangeStatistic) BoundedRangeStatistic(javax.management.j2ee.statistics.BoundedRangeStatistic) StatsEngineImpl(com.newrelic.agent.stats.StatsEngineImpl) Attribute(javax.management.Attribute) StatsEngine(com.newrelic.agent.stats.StatsEngine) Test(org.junit.Test)

Aggregations

StatsEngine (com.newrelic.agent.stats.StatsEngine)96 Test (org.junit.Test)78 TransactionDataList (com.newrelic.agent.TransactionDataList)36 StatsEngineImpl (com.newrelic.agent.stats.StatsEngineImpl)31 TransactionData (com.newrelic.agent.TransactionData)29 HashMap (java.util.HashMap)25 JmxMetric (com.newrelic.agent.jmx.metrics.JmxMetric)20 StatsWork (com.newrelic.agent.stats.StatsWork)8 MockRPMService (com.newrelic.agent.MockRPMService)7 ArrayList (java.util.ArrayList)6 AgentConfigFactoryTest (com.newrelic.agent.config.AgentConfigFactoryTest)5 Environment (com.newrelic.agent.environment.Environment)5 MetricName (com.newrelic.agent.metric.MetricName)5 CountDownLatch (java.util.concurrent.CountDownLatch)5 Attribute (javax.management.Attribute)5 MBeanServer (javax.management.MBeanServer)5 ResponseTimeStats (com.newrelic.agent.stats.ResponseTimeStats)4 Stats (com.newrelic.agent.stats.Stats)4 HttpError (com.newrelic.agent.transport.HttpError)4 CountStatistic (javax.management.j2ee.statistics.CountStatistic)4