Closed
Description
It seems there is a good amount of users who are registering an ObservationPredicate in order to disable Observations for Spring Security, something like this:
@Bean
ObservationPredicate noSpringSecurityObservations() {
return (name, context) -> !name.startsWith("spring.security.");
}
I think this common use-case could be simplified by creating this bean and let the users to configure this using a single property.