How to show Dropwizard active requests in logs
问题 This question is related to the one I ask here. I'm trying to log the number of active requests being made to my Dropwizard application every 10 minutes. The idea is to track usage of the app so it can get the proper support. In doing this, I'm trying to expose the dropwizard metrics to the logs. For testing purposes, I've made the following code: @GET @Path("/metrics") public MetricRegistry provideMetrics() { MetricRegistry metrics = new MetricRegistry(); metrics.register("io.dropwizard