Micrometer/micrometer: Release v0.10.0.RELEASE
Name: micrometer
Owner: Micrometer
Release: v0.10.0.RELEASE
Released: 2017-08-18
License: Apache-2.0
Release Assets:
- Added
CompositeMeterRegistryfor shipping metrics to multiple systems. - Added
Metrics, an all-static class for building meters against a global static composite registry. Using this is the new recommended approach for common libraries. - Added a
NamingConventioninterface, a config option to set a naming convention on a registry, and added default naming conventions for all supported monitoring systems. - Moved
longTaskTimerbehindMeterRegistry.more(), where more esoteric meter patterns will live as they are added. - New
MeterRegistry.find(...)fluent builder for finding meters with a particular type, name, set of tags, value, etc. HierarchicalNameMapperis now a functional interface.- Eliminated the old
Meters.monitor(...)type builders, and put themonitormethod on each binder (e.g. for Guava cache metrics, you now useGuavaCacheMetrics.monitor(...). This prevents runtime issues related to missing optional dependencies. - Added instrumentation for Caffeine caches.