You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the micrometer tracing auto-configuration doesn't register all ObservationHandlers at the ObservationRegistry.
ObservationRegistryPostProcessor runs, calls ObservationRegistryConfigurer#configure, which uses an ObjectProvider<ObservationHandler<Context>> to get all ObservationHandlers. This call only returns the bean from MicrometerTracingAutoConfiguration#defaultTracingObservationHandler, and not the ones from MicrometerTracingAutoConfiguration#httpServerTracingObservationHandler or MicrometerTracingAutoConfiguration#httpClientTracingObservationHandler.