armeria-0.16.0.Final
·
4873 commits
to main
since this release
Features
- #152 Give full control over the metric name of Dropwizard Metrics integration
-
NB: This breaks the API backward compatibility of the
newDropwizardDecorator()method.// Before: MetricCollectingClient.newDropwizardDecorator("serviceName", registry); MetricCollectingService.newDropwizardDecorator("serviceName", registry); // After: import static com.codahale.metrics.MetricRegistry.name; MetricCollectingClient.newDropwizardDecorator(registry, name("client", "serviceName")); MetricCollectingService.newDropwizardDecorator(registry, name("server", "serviceName"));
-