bson/testdata/command-monitoring/logging/server-connection-id.yml
2025-03-17 20:58:26 +01:00

67 lines
1.8 KiB
YAML

description: "server-connection-id"
schemaVersion: "1.13"
runOnRequirements:
- minServerVersion: "4.2"
createEntities:
- client:
id: &client client
observeLogMessages:
command: debug
- database:
id: &database database
client: *client
databaseName: &databaseName logging-server-connection-id-tests
- collection:
id: &collection collection
database: *database
collectionName: &collectionName logging-tests-collection
initialData:
- databaseName: *databaseName
collectionName: *collectionName
documents: []
tests:
- description: "command log messages include server connection id"
operations:
- name: insertOne
object: *collection
arguments:
document: { x: 1 }
- name: find
object: *collection
arguments:
filter: { $or: true }
expectError:
isError: true
expectLogMessages:
- client: *client
messages:
- level: debug
component: command
data:
message: "Command started"
commandName: insert
serverConnectionId: { $$type: [int, long] }
- level: debug
component: command
data:
message: "Command succeeded"
commandName: insert
serverConnectionId: { $$type: [int, long] }
- level: debug
component: command
data:
message: "Command started"
commandName: find
serverConnectionId: { $$type: [int, long] }
- level: debug
component: command
data:
message: "Command failed"
commandName: find
serverConnectionId: { $$type: [int, long] }