|
This version is still in development and is not considered stable yet. For the latest stable version, please use Spring Data MongoDB 5.0.0! |
Observability
|
MongoDB Java Driver 5.7+ comes with observability directly built in.
We recommend switching to the driver native
In the light of driver native observability support, the types within the Spring Data provided org.springframework.data.mongodb.observability package will not see further development and are subject to deprecation/removal in subsequent releases. |
To use Spring Data MongoDB’s flavor of Observability you must:
-
opt into Spring Data MongoDB’s configuration settings by customizing
MongoClientSettingsthrough either your@SpringBootApplicationclass or one of your configuration classes.Example 1. Registering MongoDB Micrometer customizer setup@Bean MongoClientSettingsBuilderCustomizer mongoMetricsSynchronousContextProvider(ObservationRegistry registry) { return (clientSettingsBuilder) -> { clientSettingsBuilder.contextProvider(ContextProviderFactory.create(registry)) .addCommandListener(new MongoObservationCommandListener(registry)); }; } -
Your project must include Spring Boot Actuator.
-
Disable Spring Boot’s autoconfigured MongoDB command listener and enable tracing manually by adding the following properties to your
application.propertiesExample 2. Custom settings to apply# Disable Spring Boot's autoconfigured tracing management.metrics.mongo.command.enabled=false # Enable it manually management.tracing.enabled=trueBe sure to add any other relevant settings needed to configure the tracer you are using based upon Micrometer’s reference documentation.
This should do it! You are now running with Spring Data MongoDB’s usage of Spring Observability’s Observation API.
See also OpenTelemetry Semantic Conventions for further reference.