mongo-python-driver/test/command_logging/service-id.json
Noah Stapp ebb94b669e
PYTHON-3457 Easier debugging with standardized logging (#1515)
PYTHON-3458 Add command logging.
PYTHON-3459 Add server selection logging.
PYTHON-3473 Add connection pool logging.
PYTHON-4167 Add documentation and examples.

Co-authored-by: sleepyStick <itsirisho@gmail.com>
2024-02-15 11:35:08 -08:00

208 lines
4.7 KiB
JSON

{
"description": "service-id",
"schemaVersion": "1.13",
"createEntities": [
{
"client": {
"id": "client",
"observeLogMessages": {
"command": "debug"
}
}
},
{
"database": {
"id": "database",
"client": "client",
"databaseName": "logging-server-connection-id-tests"
}
},
{
"collection": {
"id": "collection",
"database": "database",
"collectionName": "logging-tests-collection"
}
}
],
"initialData": [
{
"databaseName": "logging-server-connection-id-tests",
"collectionName": "logging-tests-collection",
"documents": []
}
],
"tests": [
{
"description": "command log messages include serviceId when in LB mode",
"runOnRequirements": [
{
"topologies": [
"load-balanced"
]
}
],
"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",
"serviceId": {
"$$type": "string"
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command succeeded",
"commandName": "insert",
"serviceId": {
"$$type": "string"
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command started",
"commandName": "find",
"serviceId": {
"$$type": "string"
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command failed",
"commandName": "find",
"serviceId": {
"$$type": "string"
}
}
}
]
}
]
},
{
"description": "command log messages omit serviceId when not in LB mode",
"runOnRequirements": [
{
"topologies": [
"single",
"replicaset",
"sharded"
]
}
],
"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",
"serviceId": {
"$$exists": false
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command succeeded",
"commandName": "insert",
"serviceId": {
"$$exists": false
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command started",
"commandName": "find",
"serviceId": {
"$$exists": false
}
}
},
{
"level": "debug",
"component": "command",
"data": {
"message": "Command failed",
"commandName": "find",
"serviceId": {
"$$exists": false
}
}
}
]
}
]
}
]
}