v1.1.4
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.