Micrometer/micrometer: Release v1.5.2
Name: micrometer
Owner: Micrometer
Release: v1.5.2
Released: 2020-06-23
License: Apache-2.0
Release Assets:
This patch release contains the changes from the 1.5.2 milestone, the 1.1.15 release, and the 1.3.10 release.
Known issues
micrometer-registry-statsd
- https://github.com/micrometer-metrics/micrometer/issues/2177 StatsD UDP reconnect bug. We are working to get a fix for this in the next patch release.
micrometer-registry-graphite
#2069 Users wishing to use the Graphite tag support added in but broken since Micrometer 1.4, a workaround is now available. Specifically, you should upgrade your metrics-graphite
dependency to 4.1.8 or later and provide a GraphiteReporter
to the GraphiteMeterRegistry
constructor with the new addMetricAttributesAsTags
option set, such as will be done in the default GraphiteReporter
in Micrometer 1.6.0:
GraphiteReporter.forRegistry(metricRegistry)
.withClock(new DropwizardClock(clock))
.convertRatesTo(config.rateUnits())
.convertDurationsTo(config.durationUnits())
.addMetricAttributesAsTags(config.graphiteTagsEnabled()) // this fixes #2069
.build(getGraphiteSender(config));