Package io.quarkus.mongodb.runtime
Interface MongoTracingRuntimeConfig
public interface MongoTracingRuntimeConfig
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionDefines what information from MongoDB commands is included in traces.
-
Method Details
-
commandDetailLevel
@WithName("command-detail-level") @WithDefault("OFF") MongoTracingRuntimeConfig.CommandDetailLevel commandDetailLevel()Defines what information from MongoDB commands is included in traces.- OFF (default): No command information is included (only operation name, database, collection)
- SANITIZED: Command structure with BSON type information instead of actual values
- FULL: Complete command with all data (NOT recommended for production - may expose sensitive data)
-