Merge branch '2.0.x'
This commit is contained in:
commit
deeb961c6e
|
@ -30,9 +30,7 @@ import org.springframework.boot.util.LambdaSafe;
|
|||
/**
|
||||
* Configurer to apply {@link MeterRegistryCustomizer customizers}, {@link MeterFilter
|
||||
* filters}, {@link MeterBinder binders} and {@link Metrics#addRegistry global
|
||||
* registration} to {@link MeterRegistry meter registries}. This configurer intentionally
|
||||
* skips {@link CompositeMeterRegistry} with the assumptions that the registries it
|
||||
* contains are beans and will be customized directly.
|
||||
* registration} to {@link MeterRegistry meter registries}.
|
||||
*
|
||||
* @author Jon Schneider
|
||||
* @author Phillip Webb
|
||||
|
@ -58,6 +56,9 @@ class MeterRegistryConfigurer {
|
|||
}
|
||||
|
||||
void configure(MeterRegistry registry) {
|
||||
if (registry instanceof CompositeMeterRegistry) {
|
||||
return;
|
||||
}
|
||||
// Customizers must be applied before binders, as they may add custom
|
||||
// tags or alter timer or summary configuration.
|
||||
customize(registry);
|
||||
|
|
Loading…
Reference in New Issue