use of io.dropwizard.metrics.Counter in project light-4j by networknt.
the class InstrumentedExecutorServiceTest method reportsTasksInformation.
@Test
public void reportsTasksInformation() throws Exception {
this.executor = Executors.newCachedThreadPool();
final InstrumentedExecutorService instrumentedExecutorService = new InstrumentedExecutorService(executor, registry, "xs");
final Meter submitted = registry.meter("xs.submitted");
final Counter running = registry.counter("xs.running");
final Meter completed = registry.meter("xs.completed");
final Timer duration = registry.timer("xs.duration");
final Meter rejected = registry.meter("xs.rejected");
assertThat(submitted.getCount()).isEqualTo(0);
assertThat(running.getCount()).isEqualTo(0);
assertThat(completed.getCount()).isEqualTo(0);
assertThat(duration.getCount()).isEqualTo(0);
assertThat(rejected.getCount()).isEqualTo(0);
Future<?> theFuture = instrumentedExecutorService.submit(() -> {
assertThat(submitted.getCount()).isEqualTo(1);
assertThat(running.getCount()).isEqualTo(1);
assertThat(completed.getCount()).isEqualTo(0);
assertThat(duration.getCount()).isEqualTo(0);
assertThat(rejected.getCount()).isEqualTo(0);
});
theFuture.get();
assertThat(submitted.getCount()).isEqualTo(1);
assertThat(running.getCount()).isEqualTo(0);
assertThat(completed.getCount()).isEqualTo(1);
assertThat(duration.getCount()).isEqualTo(1);
assertThat(duration.getSnapshot().size()).isEqualTo(1);
assertThat(rejected.getCount()).isEqualTo(0);
}
use of io.dropwizard.metrics.Counter in project light-4j by networknt.
the class InfluxDbReporterTest method reportsCounters.
@Test
public void reportsCounters() throws Exception {
final Counter counter = mock(Counter.class);
Mockito.when(counter.getCount()).thenReturn(100L);
reporter.report(this.map(), this.map("counter", counter), this.map(), this.map(), this.map());
final ArgumentCaptor<InfluxDbPoint> influxDbPointCaptor = ArgumentCaptor.forClass(InfluxDbPoint.class);
Mockito.verify(influxDb, atLeastOnce()).appendPoints(influxDbPointCaptor.capture());
InfluxDbPoint point = influxDbPointCaptor.getValue();
System.out.println("point = " + point);
/*
assertThat(point.getMeasurement()).isEqualTo("counter");
assertThat(point.getFields()).isNotEmpty();
assertThat(point.getFields()).hasSize(1);
assertThat(point.getFields()).contains(entry("count", 100L));
*/
}
use of io.dropwizard.metrics.Counter in project light-4j by networknt.
the class MetricRegistryTest method accessingACounterRegistersAndReusesTheCounter.
@Test
public void accessingACounterRegistersAndReusesTheCounter() throws Exception {
final Counter counter1 = registry.counter(THING);
final Counter counter2 = registry.counter(THING);
assertThat(counter1).isSameAs(counter2);
verify(listener).onCounterAdded(THING, counter1);
}
use of io.dropwizard.metrics.Counter in project light-4j by networknt.
the class InfluxDbReporter method report.
@Override
public void report(final SortedMap<MetricName, Gauge> gauges, final SortedMap<MetricName, Counter> counters, final SortedMap<MetricName, Histogram> histograms, final SortedMap<MetricName, Meter> meters, final SortedMap<MetricName, Timer> timers) {
final long now = System.currentTimeMillis();
if (logger.isDebugEnabled())
logger.debug("InfluxDbReporter report is called with counter size " + counters.size());
try {
influxDb.flush();
for (Map.Entry<MetricName, Gauge> entry : gauges.entrySet()) {
reportGauge(entry.getKey(), entry.getValue(), now);
}
for (Map.Entry<MetricName, Counter> entry : counters.entrySet()) {
reportCounter(entry.getKey(), entry.getValue(), now);
}
for (Map.Entry<MetricName, Histogram> entry : histograms.entrySet()) {
reportHistogram(entry.getKey(), entry.getValue(), now);
}
for (Map.Entry<MetricName, Meter> entry : meters.entrySet()) {
reportMeter(entry.getKey(), entry.getValue(), now);
}
for (Map.Entry<MetricName, Timer> entry : timers.entrySet()) {
reportTimer(entry.getKey(), entry.getValue(), now);
}
if (influxDb.hasSeriesData()) {
influxDb.writeData();
}
// reset counters
for (Map.Entry<MetricName, Counter> entry : counters.entrySet()) {
Counter counter = entry.getValue();
long count = counter.getCount();
counter.dec(count);
}
} catch (Exception e) {
logger.error("Unable to report to InfluxDB. Discarding data.", e);
}
}
use of io.dropwizard.metrics.Counter in project light-4j by networknt.
the class InstrumentedExecutorServiceTest method reportsRejected.
@Test
public void reportsRejected() throws Exception {
final BlockingQueue<Runnable> queueCapacityOne = new LinkedBlockingQueue<>(1);
this.executor = new ThreadPoolExecutor(1, 1, 0, TimeUnit.MILLISECONDS, queueCapacityOne);
final InstrumentedExecutorService instrumented = new InstrumentedExecutorService(executor, registry, "r");
final CountDownLatch finish = new CountDownLatch(1);
final Meter submitted = registry.meter("r.submitted");
final Counter running = registry.counter("r.running");
final Meter completed = registry.meter("r.completed");
final Timer duration = registry.timer("r.duration");
final Meter rejected = registry.meter("r.rejected");
assertThat(submitted.getCount()).isEqualTo(0);
assertThat(running.getCount()).isEqualTo(0);
assertThat(completed.getCount()).isEqualTo(0);
assertThat(duration.getCount()).isEqualTo(0);
assertThat(rejected.getCount()).isEqualTo(0);
final List<Future<Object>> futures = new ArrayList<>();
// Start two callables - one to run on thread and one to be added to queue
for (int i = 0; i < 2; i++) {
futures.add(instrumented.submit(() -> {
finish.await();
return null;
}));
}
try {
// Attempt to submit third callable - should fail
instrumented.submit(() -> {
throw new IllegalStateException("Shouldn't run this task");
});
failBecauseExceptionWasNotThrown(RejectedExecutionException.class);
} catch (RejectedExecutionException e) {
// Expected
} finally {
finish.countDown();
for (Future future : futures) {
future.get();
}
}
assertThat(submitted.getCount()).isEqualTo(3);
assertThat(running.getCount()).isEqualTo(0);
assertThat(completed.getCount()).isEqualTo(2);
assertThat(duration.getCount()).isEqualTo(2);
assertThat(rejected.getCount()).isEqualTo(1);
}
Aggregations