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.
The text was updated successfully, but these errors were encountered:
It seems that the micrometer tracing auto-configuration doesn't register all
ObservationHandler
s at theObservationRegistry
.ObservationRegistryPostProcessor
runs, callsObservationRegistryConfigurer#configure
, which uses anObjectProvider<ObservationHandler<Context>>
to get allObservationHandler
s. This call only returns the bean fromMicrometerTracingAutoConfiguration#defaultTracingObservationHandler
, and not the ones fromMicrometerTracingAutoConfiguration#httpServerTracingObservationHandler
orMicrometerTracingAutoConfiguration#httpClientTracingObservationHandler
.The text was updated successfully, but these errors were encountered: