Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Monitoring and measuring reactive application with Dropwizard Metrics

Tags: monitoring

In the previous article we created a simple indexing code that hammers ElasticSearch with thousands of concurrent requests. The only way to monitor the performance of our system was an old-school logging statement: .window(Duration.ofSeconds(1)) .flatMap(Flux::count) .subscribe(winSize -> log.debug("Got {} responses in last second", winSize)); It’s fine, but on a production system, we’d rather have some centralized Monitoring ...



This post first appeared on Java Code Geeks, please read the originial post: here

Share the post

Monitoring and measuring reactive application with Dropwizard Metrics

×

Subscribe to Java Code Geeks

Get updates delivered right to your inbox!

Thank you for your subscription

×