Micrometer/micrometer: Release v1.1.4

Name: micrometer

Owner: Micrometer

Release: v1.1.4

Released: 2019-04-03

License: Apache-2.0

Release Assets:

See the 1.1.4 milestone for included changes. 1.0.10 changes are also included in this release.

Notable changes

Default PauseDetector

The default PauseDetector has been changed to NoPauseDetector from ClockDriftPauseDetector (see #1324). To restore the prior behavior, configure a ClockDriftPauseDetector on your MeterRegistry like:

registry.config().pauseDetector(new ClockDriftPauseDetector(Duration.ofMillis(100), Duration.ofMillis(100));

Fail fast on missing required configuration

MissingRequiredConfigurationException will be thrown when instantiating MeterRegistry implementations if required configuration values are not available from the given *Config class used.

Fixes

Enhancements

To top