diff --git a/Website/backup.py b/Website/backup.py new file mode 100644 index 0000000..f0f44c8 --- /dev/null +++ b/Website/backup.py @@ -0,0 +1,75 @@ +import os +from datetime import datetime +from pymongo import MongoClient +from pymongo.errors import PyMongoError + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INVOICE_UPLOAD_DIR = os.path.join(BASE_DIR, "static", "uploads", "invoices") +MONGO_URI = os.environ.get("MONGO_URI", "mongodb://localhost:27017") +MONGO_DB_NAME = os.environ.get("MONGO_DB_NAME", "Invario_Website") +LICENSE_COLLECTION = "licenses" + + +def _get_collection(): + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=1200) + return client, client[MONGO_DB_NAME][LICENSE_COLLECTION] + +def load_licenses() -> dict: + """Load all licenses from MongoDB and return them as a list.""" + client = None + try: + client, col = _get_collection() + return list(col.find({}, {"_id": 0}).sort("created_at", 1)) + except PyMongoError: + return [] + finally: + if client: + client.close() + + +def save_licenses(data: dict) -> bool: + """Replace MongoDB licenses with provided list data.""" + if not isinstance(data, list): + return False + + client = None + try: + client, col = _get_collection() + col.delete_many({}) + + prepared = [] + for item in data: + if not isinstance(item, dict): + continue + license_key = str(item.get("license_key", "")).strip() + user_id = str(item.get("user_id", "")).strip() + if not license_key: + continue + prepared.append( + { + "user_id": user_id, + "license_key": license_key, + "hwid_uuid": str(item.get("hwid_uuid", "")).strip(), + "created_at": item.get("created_at") or datetime.utcnow().isoformat(timespec="seconds") + "Z", + } + ) + + if prepared: + col.insert_many(prepared) + + return True + except PyMongoError: + return False + finally: + if client: + client.close() + + +def export_backup() -> dict: + """Export current licenses content from MongoDB.""" + return load_licenses() + + +def import_backup(data: dict) -> bool: + """Import and restore licenses in MongoDB from backup data.""" + return save_licenses(data) \ No newline at end of file diff --git a/Website/main.py b/Website/main.py index 97db12a..81a0752 100644 --- a/Website/main.py +++ b/Website/main.py @@ -1,9 +1,11 @@ from flask_jwt_extended import JWTManager, create_access_token, jwt_required -from flask import Flask, render_template, request, jsonify, flash, redirect, url_for, get_flashed_messages, session +from flask import Flask, render_template, request, jsonify, flash, redirect, url_for, get_flashed_messages, session, send_file import os +import json import calendar from datetime import timedelta, datetime, date from functools import wraps +from io import BytesIO from werkzeug.security import generate_password_hash, check_password_hash from werkzeug.utils import secure_filename import bleach @@ -11,6 +13,8 @@ from markupsafe import escape from pymongo import MongoClient from pymongo.errors import PyMongoError from bson.objectid import ObjectId +import verify +import backup import user as user_store @@ -1211,6 +1215,152 @@ def impressum(): def nutzungsbedingungen(): return render_template("nutzungsbedingungen.html") +@app.route("/admin/lizenz_key") +@app.route("/admin/license-management") +@admin_required +def admin_license_keys(): + if 'username' not in session: + return redirect(url_for('login')) + + keys = verify.load_file() + users = _list_users_for_admin() + return render_template("lizenz-managment.html", keys=keys, users=users) + + +@app.route("/admin/generate_new", methods=["POST"]) +@admin_required +def generate_new(): + if 'username' not in session: + return redirect(url_for('login')) + + new_license = verify.new_key() + if not new_license: + flash("License generation failed (database unavailable).", "error") + return redirect(url_for('admin_license_keys')) + + flash(f"New key generated: {new_license}", "success") + return redirect(url_for('admin_license_keys')) + + +@app.route("/admin/allocate_key", methods=["POST"]) +@admin_required +def allocate_key(): + if 'username' not in session: + return redirect(url_for('login')) + + username = _sanitize_text(request.form.get("username") or "", 80) + license_key = _sanitize_text(request.form.get("license_key") or "", 160) + + if not username or not license_key: + flash("Bitte Benutzer und Lizenz-Key auswaehlen.", "error") + return redirect(url_for('admin_license_keys')) + + if not _find_user(username): + flash("Ausgewaehlter Benutzer wurde nicht gefunden.", "error") + return redirect(url_for('admin_license_keys')) + + client = None + try: + client, col = _get_collection("licenses") + result = col.update_one( + {"license_key": license_key}, + { + "$set": { + "username": username, + "updated_at": _utc_now_iso(), + } + }, + ) + if result.matched_count == 0: + flash("Lizenz-Key nicht gefunden.", "error") + return redirect(url_for('admin_license_keys')) + except PyMongoError: + flash("Key-Zuweisung fehlgeschlagen.", "error") + return redirect(url_for('admin_license_keys')) + finally: + if client: + client.close() + + flash("Lizenz-Key wurde erfolgreich zugewiesen.", "success") + return redirect(url_for('admin_license_keys')) + + +@app.route("/admin/remove_key/", methods=["POST"]) +@admin_required +def remove_key(user_id): + if 'username' not in session: + return redirect(url_for('login')) + + if verify.remove_key(user_id): + flash(f"Key for user {user_id} removed", "success") + else: + flash(f"No key found for user {user_id}", "error") + + return redirect(url_for('admin_license_keys')) + + + +@app.route('/admin/download_backup', methods=['GET']) +@admin_required +def download_backup(): + if 'username' not in session: + return redirect(url_for('login')) + + licenses_data = backup.export_backup() + json_str = json.dumps(licenses_data, indent=2) + return send_file( + BytesIO(json_str.encode('utf-8')), + mimetype='application/json', + as_attachment=True, + download_name='licenses_backup.json' + ) + + +@app.route('/admin/upload_backup', methods=['POST']) +@admin_required +def upload_backup(): + if 'username' not in session: + return redirect(url_for('login')) + + if 'file' not in request.files: + flash('No file provided', 'error') + return redirect(url_for('admin_license_keys')) + + file = request.files['file'] + + if file.filename == '': + flash('No file selected', 'error') + return redirect(url_for('admin_license_keys')) + + try: + content = file.read().decode('utf-8') + data = json.loads(content) + + if backup.import_backup(data): + flash('Licenses backup restored successfully', 'success') + else: + flash('Failed to restore backup - invalid format', 'error') + except json.JSONDecodeError: + flash('Invalid JSON file', 'error') + except Exception as e: + flash(f'Error uploading backup: {str(e)}', 'error') + + return redirect(url_for('admin_license_keys')) + +@app.route("/validate__information", methods=['POST']) +def validate__information(): + data = request.get_json(silent=True) + if not data: + return jsonify({"error": "No JSON data provided"}), 400 + license_key = data.get("license") + hwid_uuid = data.get("hwid") + if not license_key or not hwid_uuid: + return jsonify({"error": "Missing 'license' or 'hwid' in JSON data"}), 400 + if verify.check(license_key, hwid_uuid): + return jsonify({"status": "ok"}), 200 + else: + return jsonify({"status": "invalid"}), 402 + @app.route('/logout') def logout(): diff --git a/Website/mongodb.log.2026-03-24T11-22-40 b/Website/mongodb.log.2026-03-24T11-22-40 deleted file mode 100644 index dadb238..0000000 --- a/Website/mongodb.log.2026-03-24T11-22-40 +++ /dev/null @@ -1,1013 +0,0 @@ -{"t":{"$date":"2026-03-24T07:28:03.747+00:00"},"s":"I", "c":"NETWORK", "id":4915701, "ctx":"main","msg":"Initialized wire specification","attr":{"spec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":21},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":21},"outgoing":{"minWireVersion":6,"maxWireVersion":21},"isInternalClient":true}}} -{"t":{"$date":"2026-03-24T07:28:03.752+00:00"},"s":"I", "c":"CONTROL", "id":23285, "ctx":"main","msg":"Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'"} -{"t":{"$date":"2026-03-24T07:28:03.754+00:00"},"s":"I", "c":"NETWORK", "id":4648601, "ctx":"main","msg":"Implicit TCP FastOpen unavailable. If TCP FastOpen is required, set tcpFastOpenServer, tcpFastOpenClient, and tcpFastOpenQueueSize."} -{"t":{"$date":"2026-03-24T07:28:03.756+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationDonorService","namespace":"config.tenantMigrationDonors"}} -{"t":{"$date":"2026-03-24T07:28:03.756+00:00"},"s":"I", "c":"REPL", "id":5123008, "ctx":"main","msg":"Successfully registered PrimaryOnlyService","attr":{"service":"TenantMigrationRecipientService","namespace":"config.tenantMigrationRecipients"}} -{"t":{"$date":"2026-03-24T07:28:03.756+00:00"},"s":"W", "c":"NETWORK", "id":11621101,"ctx":"main","msg":"Overriding max connections to honor `capMemoryConsumptionForPreAuthBuffers` settings","attr":{"limit":101670}} -{"t":{"$date":"2026-03-24T07:28:03.757+00:00"},"s":"I", "c":"CONTROL", "id":5945603, "ctx":"main","msg":"Multi threading initialized"} -{"t":{"$date":"2026-03-24T07:28:03.757+00:00"},"s":"I", "c":"TENANT_M", "id":7091600, "ctx":"main","msg":"Starting TenantMigrationAccessBlockerRegistry"} -{"t":{"$date":"2026-03-24T07:28:03.757+00:00"},"s":"I", "c":"CONTROL", "id":4615611, "ctx":"initandlisten","msg":"MongoDB starting","attr":{"pid":58691,"port":27017,"dbPath":"/workspaces/Key-service-Server/Website/.mongo-data","architecture":"64-bit","host":"codespaces-b074fe"}} -{"t":{"$date":"2026-03-24T07:28:03.758+00:00"},"s":"I", "c":"CONTROL", "id":23403, "ctx":"initandlisten","msg":"Build Info","attr":{"buildInfo":{"version":"7.0.31","gitVersion":"6a3bdfa2794c261d3ce011c74f818e970e563609","openSSLVersion":"OpenSSL 3.0.13 30 Jan 2024","modules":[],"allocator":"tcmalloc","environment":{"distmod":"ubuntu2204","distarch":"x86_64","target_arch":"x86_64"}}}} -{"t":{"$date":"2026-03-24T07:28:03.758+00:00"},"s":"I", "c":"CONTROL", "id":51765, "ctx":"initandlisten","msg":"Operating System","attr":{"os":{"name":"Ubuntu","version":"24.04"}}} -{"t":{"$date":"2026-03-24T07:28:03.758+00:00"},"s":"I", "c":"CONTROL", "id":21951, "ctx":"initandlisten","msg":"Options set by command line","attr":{"options":{"net":{"bindIp":"127.0.0.1","port":27017},"processManagement":{"fork":true},"storage":{"dbPath":"/workspaces/Key-service-Server/Website/.mongo-data"},"systemLog":{"destination":"file","path":"/workspaces/Key-service-Server/Website/mongodb.log"}}}} -{"t":{"$date":"2026-03-24T07:28:03.758+00:00"},"s":"W", "c":"NETWORK", "id":11621101,"ctx":"initandlisten","msg":"Overriding max connections to honor `capMemoryConsumptionForPreAuthBuffers` settings","attr":{"limit":101670}} -{"t":{"$date":"2026-03-24T07:28:03.761+00:00"},"s":"I", "c":"STORAGE", "id":22270, "ctx":"initandlisten","msg":"Storage engine to use detected by data files","attr":{"dbpath":"/workspaces/Key-service-Server/Website/.mongo-data","storageEngine":"wiredTiger"}} -{"t":{"$date":"2026-03-24T07:28:03.761+00:00"},"s":"I", "c":"STORAGE", "id":22297, "ctx":"initandlisten","msg":"Using the XFS filesystem is strongly recommended with the WiredTiger storage engine. See http://dochub.mongodb.org/core/prodnotes-filesystem","tags":["startupWarnings"]} -{"t":{"$date":"2026-03-24T07:28:03.761+00:00"},"s":"I", "c":"STORAGE", "id":22315, "ctx":"initandlisten","msg":"Opening WiredTiger","attr":{"config":"create,cache_size=3459M,session_max=33000,eviction=(threads_min=4,threads_max=4),config_base=false,statistics=(fast),log=(enabled=true,remove=true,path=journal,compressor=snappy),builtin_extension_config=(zstd=(compression_level=6)),file_manager=(close_idle_time=600,close_scan_interval=10,close_handle_minimum=2000),statistics_log=(wait=0),json_output=(error,message),verbose=[recovery_progress:1,checkpoint_progress:1,compact_progress:1,backup:0,checkpoint:0,compact:0,evict:0,history_store:0,recovery:0,rts:0,salvage:0,tiered:0,timestamp:0,transaction:0,verify:0,log:0],"}} -{"t":{"$date":"2026-03-24T07:28:04.382+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":382055,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Recovering log 2 through 3"}}} -{"t":{"$date":"2026-03-24T07:28:04.466+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":466236,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Recovering log 3 through 3"}}} -{"t":{"$date":"2026-03-24T07:28:04.548+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":548313,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Main recovery loop: starting at 2/5504 to 3/256"}}} -{"t":{"$date":"2026-03-24T07:28:04.645+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":645508,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Recovering log 2 through 3"}}} -{"t":{"$date":"2026-03-24T07:28:04.721+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":721405,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Recovering log 3 through 3"}}} -{"t":{"$date":"2026-03-24T07:28:04.793+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":793086,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"recovery log replay has successfully finished and ran for 411 milliseconds"}}} -{"t":{"$date":"2026-03-24T07:28:04.793+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":793325,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Set global recovery timestamp: (0, 0)"}}} -{"t":{"$date":"2026-03-24T07:28:04.793+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":793371,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"Set global oldest timestamp: (0, 0)"}}} -{"t":{"$date":"2026-03-24T07:28:04.793+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":793798,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"recovery rollback to stable has successfully finished and ran for 0 milliseconds"}}} -{"t":{"$date":"2026-03-24T07:28:04.797+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":797160,"thread":"58691:0x789db57b4100","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 1, snapshot max: 1 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:28:04.806+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":806266,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"recovery checkpoint has successfully finished and ran for 11 milliseconds"}}} -{"t":{"$date":"2026-03-24T07:28:04.806+00:00"},"s":"I", "c":"WTRECOV", "id":22430, "ctx":"initandlisten","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337284,"ts_usec":806442,"thread":"58691:0x789db57b4100","session_name":"txn-recover","category":"WT_VERB_RECOVERY_PROGRESS","category_id":30,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"recovery was completed successfully and took 424ms, including 411ms for the log replay, 0ms for the rollback to stable, and 11ms for the checkpoint."}}} -{"t":{"$date":"2026-03-24T07:28:04.811+00:00"},"s":"I", "c":"STORAGE", "id":4795906, "ctx":"initandlisten","msg":"WiredTiger opened","attr":{"durationMillis":1050}} -{"t":{"$date":"2026-03-24T07:28:04.811+00:00"},"s":"I", "c":"RECOVERY", "id":23987, "ctx":"initandlisten","msg":"WiredTiger recoveryTimestamp","attr":{"recoveryTimestamp":{"$timestamp":{"t":0,"i":0}}}} -{"t":{"$date":"2026-03-24T07:28:04.844+00:00"},"s":"W", "c":"CONTROL", "id":22120, "ctx":"initandlisten","msg":"Access control is not enabled for the database. Read and write access to data and configuration is unrestricted","tags":["startupWarnings"]} -{"t":{"$date":"2026-03-24T07:28:04.844+00:00"},"s":"W", "c":"CONTROL", "id":9068900, "ctx":"initandlisten","msg":"For customers running MongoDB 7.0, we suggest changing the contents of the following sysfsFile","attr":{"sysfsFile":"/sys/kernel/mm/transparent_hugepage","currentValue":"always","desiredValue":"never"},"tags":["startupWarnings"]} -{"t":{"$date":"2026-03-24T07:28:04.844+00:00"},"s":"W", "c":"CONTROL", "id":5123300, "ctx":"initandlisten","msg":"vm.max_map_count is too low","attr":{"currentValue":65530,"recommendedMinimum":203340,"maxConns":101670},"tags":["startupWarnings"]} -{"t":{"$date":"2026-03-24T07:28:04.858+00:00"},"s":"I", "c":"NETWORK", "id":4915702, "ctx":"initandlisten","msg":"Updated wire specification","attr":{"oldSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":21},"incomingInternalClient":{"minWireVersion":0,"maxWireVersion":21},"outgoing":{"minWireVersion":6,"maxWireVersion":21},"isInternalClient":true},"newSpec":{"incomingExternalClient":{"minWireVersion":0,"maxWireVersion":21},"incomingInternalClient":{"minWireVersion":21,"maxWireVersion":21},"outgoing":{"minWireVersion":21,"maxWireVersion":21},"isInternalClient":true}}} -{"t":{"$date":"2026-03-24T07:28:04.858+00:00"},"s":"I", "c":"REPL", "id":5853300, "ctx":"initandlisten","msg":"current featureCompatibilityVersion value","attr":{"featureCompatibilityVersion":"7.0","context":"startup"}} -{"t":{"$date":"2026-03-24T07:28:04.858+00:00"},"s":"I", "c":"STORAGE", "id":5071100, "ctx":"initandlisten","msg":"Clearing temp directory"} -{"t":{"$date":"2026-03-24T07:28:04.864+00:00"},"s":"I", "c":"CONTROL", "id":6608200, "ctx":"initandlisten","msg":"Initializing cluster server parameters from disk"} -{"t":{"$date":"2026-03-24T07:28:04.864+00:00"},"s":"I", "c":"CONTROL", "id":20536, "ctx":"initandlisten","msg":"Flow Control is enabled on this deployment"} -{"t":{"$date":"2026-03-24T07:28:04.864+00:00"},"s":"I", "c":"FTDC", "id":20625, "ctx":"initandlisten","msg":"Initializing full-time diagnostic data capture","attr":{"dataDirectory":"/workspaces/Key-service-Server/Website/.mongo-data/diagnostic.data"}} -{"t":{"$date":"2026-03-24T07:28:04.882+00:00"},"s":"I", "c":"REPL", "id":6015317, "ctx":"initandlisten","msg":"Setting new configuration state","attr":{"newState":"ConfigReplicationDisabled","oldState":"ConfigPreStart"}} -{"t":{"$date":"2026-03-24T07:28:04.883+00:00"},"s":"I", "c":"STORAGE", "id":22262, "ctx":"initandlisten","msg":"Timestamp monitor starting"} -{"t":{"$date":"2026-03-24T07:28:04.885+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"/tmp/mongodb-27017.sock"}} -{"t":{"$date":"2026-03-24T07:28:04.885+00:00"},"s":"I", "c":"NETWORK", "id":23015, "ctx":"listener","msg":"Listening on","attr":{"address":"127.0.0.1"}} -{"t":{"$date":"2026-03-24T07:28:04.885+00:00"},"s":"I", "c":"NETWORK", "id":23016, "ctx":"listener","msg":"Waiting for connections","attr":{"port":27017,"ssl":"off"}} -{"t":{"$date":"2026-03-24T07:28:04.885+00:00"},"s":"I", "c":"CONTROL", "id":8423403, "ctx":"initandlisten","msg":"mongod startup complete","attr":{"Summary of time elapsed":{"Startup from clean shutdown?":true,"Statistics":{"Transport layer setup":"0 ms","Run initial syncer crash recovery":"0 ms","Create storage engine lock file in the data directory":"0 ms","Get metadata describing storage engine":"0 ms","Validate options in metadata against current startup options":"0 ms","Create storage engine":"1077 ms","Write current PID to file":"0 ms","Initialize FCV before rebuilding indexes":"14 ms","Drop abandoned idents and get back indexes that need to be rebuilt or builds that need to be restarted":"0 ms","Rebuild indexes for collections":"0 ms","Load cluster parameters from disk for a standalone":"0 ms","Build user and roles graph":"0 ms","Set up the background thread pool responsible for waiting for opTimes to be majority committed":"0 ms","Initialize information needed to make a mongod instance shard aware":"1 ms","Start up the replication coordinator":"4 ms","Start transport layer":"0 ms","_initAndListen total elapsed time":"1128 ms"}}}} -{"t":{"$date":"2026-03-24T07:28:11.637+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:57056","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f1451d19-ac20-4d2c-8eac-aca19c402a15"}},"connectionId":1,"connectionCount":1}} -{"t":{"$date":"2026-03-24T07:28:11.638+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:57058","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0a73c459-3d71-4f43-a85d-a94fc2ed91d8"}},"connectionId":2,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:28:11.641+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn2","msg":"client metadata","attr":{"remote":"127.0.0.1:57058","client":"conn2","negotiatedCompressors":[],"doc":{"application":{"name":"mongodb-vscode 1.15.1"},"driver":{"name":"nodejs","version":"7.1.0"},"platform":"Node.js v22.22.0, LE","os":{"name":"linux","architecture":"x64","version":"6.8.0-1044-azure","type":"Linux"},"env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:28:11.641+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn2","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:57058","doc":{"application":{"name":"mongodb-vscode 1.15.1"},"driver":{"name":"nodejs","version":"7.1.0"},"platform":"Node.js v22.22.0, LE","os":{"name":"linux","architecture":"x64","version":"6.8.0-1044-azure","type":"Linux"},"env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:28:11.641+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn1","msg":"client metadata","attr":{"remote":"127.0.0.1:57056","client":"conn1","negotiatedCompressors":[],"doc":{"application":{"name":"mongodb-vscode 1.15.1"},"driver":{"name":"nodejs","version":"7.1.0"},"platform":"Node.js v22.22.0, LE","os":{"name":"linux","architecture":"x64","version":"6.8.0-1044-azure","type":"Linux"},"env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:28:11.641+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn1","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:57056","doc":{"application":{"name":"mongodb-vscode 1.15.1"},"driver":{"name":"nodejs","version":"7.1.0"},"platform":"Node.js v22.22.0, LE","os":{"name":"linux","architecture":"x64","version":"6.8.0-1044-azure","type":"Linux"},"env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:29:04.970+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337344,"ts_usec":868441,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 4, snapshot max: 4 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:30:05.387+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337405,"ts_usec":382989,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 5, snapshot max: 5 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:31:05.503+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337465,"ts_usec":502722,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 6, snapshot max: 6 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:32:05.542+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337525,"ts_usec":542683,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 7, snapshot max: 7 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:33:05.558+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337585,"ts_usec":558304,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 8, snapshot max: 8 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:34:05.573+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337645,"ts_usec":573828,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 9, snapshot max: 9 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:35:05.705+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337705,"ts_usec":705906,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 10, snapshot max: 10 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:36:05.716+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337765,"ts_usec":716275,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 11, snapshot max: 11 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:37:05.744+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337825,"ts_usec":744845,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 12, snapshot max: 12 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:38:05.759+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337885,"ts_usec":759025,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 13, snapshot max: 13 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:39:05.766+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774337945,"ts_usec":766715,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 14, snapshot max: 14 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:40:05.782+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338005,"ts_usec":782879,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 15, snapshot max: 15 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:41:05.794+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338065,"ts_usec":793977,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 16, snapshot max: 16 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:42:05.817+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338125,"ts_usec":817028,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 17, snapshot max: 17 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:43:05.876+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338185,"ts_usec":876015,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 18, snapshot max: 18 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:44:05.886+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338245,"ts_usec":886372,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 19, snapshot max: 19 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:45:06.104+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338306,"ts_usec":104880,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 20, snapshot max: 20 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:46:06.119+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338366,"ts_usec":119515,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 21, snapshot max: 21 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:47:06.150+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338426,"ts_usec":150688,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 22, snapshot max: 22 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:48:06.161+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338486,"ts_usec":160986,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 23, snapshot max: 23 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:49:06.202+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338546,"ts_usec":202647,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 24, snapshot max: 24 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:50:06.210+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338606,"ts_usec":210295,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 25, snapshot max: 25 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:51:06.235+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338666,"ts_usec":235554,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 26, snapshot max: 26 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:52:06.250+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338726,"ts_usec":250050,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 27, snapshot max: 27 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:53:06.279+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338786,"ts_usec":279816,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 28, snapshot max: 28 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:54:06.292+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338846,"ts_usec":291987,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 29, snapshot max: 29 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:55:06.476+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338906,"ts_usec":476765,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 30, snapshot max: 30 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:56:03.081+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50320","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5773e729-043a-4fcb-b3a5-75678c260fa7"}},"connectionId":3,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:56:03.105+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn3","msg":"client metadata","attr":{"remote":"127.0.0.1:50320","client":"conn3","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.111+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn3","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:50320","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.114+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c681b6b5-5c9c-414a-a032-ec29bc256d54"}},"connectionId":4,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:56:03.115+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:50334","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7897d5fc-9db3-41d8-a746-c22c7ad94ecd"}},"connectionId":5,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:56:03.115+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn4","msg":"client metadata","attr":{"remote":"127.0.0.1:50322","client":"conn4","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.115+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn4","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:50322","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.115+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn5","msg":"client metadata","attr":{"remote":"127.0.0.1:50334","client":"conn5","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.116+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn5","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:50334","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:56:03.120+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn4","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":5}} -{"t":{"$date":"2026-03-24T07:56:03.236+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn4","msg":"Connection ended","attr":{"remote":"127.0.0.1:50322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c681b6b5-5c9c-414a-a032-ec29bc256d54"}},"connectionId":4,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:56:03.236+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn5","msg":"Connection ended","attr":{"remote":"127.0.0.1:50334","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7897d5fc-9db3-41d8-a746-c22c7ad94ecd"}},"connectionId":5,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:56:03.615+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn3","msg":"Interrupted operation as its client disconnected","attr":{"opId":20979}} -{"t":{"$date":"2026-03-24T07:56:03.628+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn3","msg":"Connection ended","attr":{"remote":"127.0.0.1:50320","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5773e729-043a-4fcb-b3a5-75678c260fa7"}},"connectionId":3,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:56:06.486+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774338966,"ts_usec":486070,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 31, snapshot max: 31 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:57:06.494+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339026,"ts_usec":494726,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 32, snapshot max: 32 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:57:08.304+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55034","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"4e4ea63b-cfa0-4032-9512-2cf2b2835114"}},"connectionId":6,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:08.306+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn6","msg":"client metadata","attr":{"remote":"127.0.0.1:55034","client":"conn6","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.306+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn6","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55034","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.307+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"efc03751-82f8-4395-9c1e-fa17f9c503da"}},"connectionId":7,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:08.308+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn7","msg":"client metadata","attr":{"remote":"127.0.0.1:55042","client":"conn7","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.308+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn7","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55042","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.308+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"712f88d7-dd44-416f-ba9b-069999bbf941"}},"connectionId":8,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.309+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn8","msg":"client metadata","attr":{"remote":"127.0.0.1:55052","client":"conn8","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.309+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn8","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55052","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.310+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn8","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T07:57:08.312+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn8","msg":"Connection ended","attr":{"remote":"127.0.0.1:55052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"712f88d7-dd44-416f-ba9b-069999bbf941"}},"connectionId":8,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:08.314+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn7","msg":"Connection ended","attr":{"remote":"127.0.0.1:55042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"efc03751-82f8-4395-9c1e-fa17f9c503da"}},"connectionId":7,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:08.316+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55062","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"20a55600-afd9-4982-be77-3767e2da1c4e"}},"connectionId":9,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:08.316+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn9","msg":"client metadata","attr":{"remote":"127.0.0.1:55062","client":"conn9","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.316+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn9","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55062","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.318+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55066","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"66ac7bcf-4b68-4832-b060-26cfd13fb9ff"}},"connectionId":10,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.320+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn10","msg":"client metadata","attr":{"remote":"127.0.0.1:55066","client":"conn10","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.320+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn10","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55066","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.321+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55068","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c5ca96a7-bef7-4b11-a9f4-11270c4f0c65"}},"connectionId":11,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:08.321+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn11","msg":"client metadata","attr":{"remote":"127.0.0.1:55068","client":"conn11","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.321+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn11","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55068","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.321+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn10","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T07:57:08.323+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn11","msg":"Connection ended","attr":{"remote":"127.0.0.1:55068","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c5ca96a7-bef7-4b11-a9f4-11270c4f0c65"}},"connectionId":11,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.323+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn10","msg":"Connection ended","attr":{"remote":"127.0.0.1:55066","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"66ac7bcf-4b68-4832-b060-26cfd13fb9ff"}},"connectionId":10,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:08.326+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55078","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"04a2319b-ab12-449c-88bc-4d054309e056"}},"connectionId":12,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.326+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn12","msg":"client metadata","attr":{"remote":"127.0.0.1:55078","client":"conn12","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.326+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn12","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55078","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.328+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55084","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a7e469e7-143c-459a-8785-da1d33f42e34"}},"connectionId":13,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:08.328+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55092","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"924107eb-6a1b-4596-8dc3-94dcb065ebd4"}},"connectionId":14,"connectionCount":7}} -{"t":{"$date":"2026-03-24T07:57:08.329+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn13","msg":"client metadata","attr":{"remote":"127.0.0.1:55084","client":"conn13","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.329+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn13","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55084","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.330+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn14","msg":"client metadata","attr":{"remote":"127.0.0.1:55092","client":"conn14","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.330+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn14","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55092","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.330+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn14","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:57:08.331+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn13","msg":"Connection ended","attr":{"remote":"127.0.0.1:55084","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a7e469e7-143c-459a-8785-da1d33f42e34"}},"connectionId":13,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:08.332+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn14","msg":"Connection ended","attr":{"remote":"127.0.0.1:55092","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"924107eb-6a1b-4596-8dc3-94dcb065ebd4"}},"connectionId":14,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.335+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55104","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b617e9dd-03fe-45f5-abb5-bafd54bdcf8f"}},"connectionId":15,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:08.336+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn15","msg":"client metadata","attr":{"remote":"127.0.0.1:55104","client":"conn15","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.336+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn15","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55104","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.337+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55114","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5844d7fe-8c6d-4c5c-aaed-31b401a16de5"}},"connectionId":16,"connectionCount":7}} -{"t":{"$date":"2026-03-24T07:57:08.337+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:55116","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"82781608-7532-42a3-9ff6-dd4f4bbb625e"}},"connectionId":17,"connectionCount":8}} -{"t":{"$date":"2026-03-24T07:57:08.337+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn16","msg":"client metadata","attr":{"remote":"127.0.0.1:55114","client":"conn16","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.338+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn16","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55114","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.338+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn17","msg":"client metadata","attr":{"remote":"127.0.0.1:55116","client":"conn17","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.338+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn17","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:55116","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:08.351+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn16","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":14}} -{"t":{"$date":"2026-03-24T07:57:08.399+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn16","msg":"Connection ended","attr":{"remote":"127.0.0.1:55114","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5844d7fe-8c6d-4c5c-aaed-31b401a16de5"}},"connectionId":16,"connectionCount":7}} -{"t":{"$date":"2026-03-24T07:57:08.400+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn17","msg":"Connection ended","attr":{"remote":"127.0.0.1:55116","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"82781608-7532-42a3-9ff6-dd4f4bbb625e"}},"connectionId":17,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:08.808+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn6","msg":"Interrupted operation as its client disconnected","attr":{"opId":21803}} -{"t":{"$date":"2026-03-24T07:57:08.809+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn6","msg":"Connection ended","attr":{"remote":"127.0.0.1:55034","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"4e4ea63b-cfa0-4032-9512-2cf2b2835114"}},"connectionId":6,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:08.820+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn9","msg":"Interrupted operation as its client disconnected","attr":{"opId":21812}} -{"t":{"$date":"2026-03-24T07:57:08.821+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn9","msg":"Connection ended","attr":{"remote":"127.0.0.1:55062","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"20a55600-afd9-4982-be77-3767e2da1c4e"}},"connectionId":9,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:08.829+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn12","msg":"Interrupted operation as its client disconnected","attr":{"opId":21817}} -{"t":{"$date":"2026-03-24T07:57:08.830+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn12","msg":"Connection ended","attr":{"remote":"127.0.0.1:55078","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"04a2319b-ab12-449c-88bc-4d054309e056"}},"connectionId":12,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:08.838+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn15","msg":"Interrupted operation as its client disconnected","attr":{"opId":21823}} -{"t":{"$date":"2026-03-24T07:57:08.839+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn15","msg":"Connection ended","attr":{"remote":"127.0.0.1:55104","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b617e9dd-03fe-45f5-abb5-bafd54bdcf8f"}},"connectionId":15,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:57:22.948+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44946","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"73fb7bd5-3d2f-4bcc-ab73-4c507639912b"}},"connectionId":18,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:22.949+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn18","msg":"client metadata","attr":{"remote":"127.0.0.1:44946","client":"conn18","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.949+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn18","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44946","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.950+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44962","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3572705d-1036-4461-a13d-750f8bf39d5b"}},"connectionId":19,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:22.950+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44972","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a109ef57-1ceb-4ad9-a82d-9a6751a6b584"}},"connectionId":20,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:22.951+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn19","msg":"client metadata","attr":{"remote":"127.0.0.1:44962","client":"conn19","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.951+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn19","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44962","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.951+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn20","msg":"client metadata","attr":{"remote":"127.0.0.1:44972","client":"conn20","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.951+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn20","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44972","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.951+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn20","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:57:22.952+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn19","msg":"Connection ended","attr":{"remote":"127.0.0.1:44962","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3572705d-1036-4461-a13d-750f8bf39d5b"}},"connectionId":19,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:22.952+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn20","msg":"Connection ended","attr":{"remote":"127.0.0.1:44972","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a109ef57-1ceb-4ad9-a82d-9a6751a6b584"}},"connectionId":20,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:22.954+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44988","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e24a0560-b89a-4319-8f53-218a69138ea8"}},"connectionId":21,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:22.955+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn21","msg":"client metadata","attr":{"remote":"127.0.0.1:44988","client":"conn21","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.955+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn21","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44988","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.955+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44992","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30e3ead0-db7a-4699-b231-0f1492397eb7"}},"connectionId":22,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:22.955+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44996","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"91b68da9-2b92-4c9c-bcba-fe61e9c1e74d"}},"connectionId":23,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:22.956+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn22","msg":"client metadata","attr":{"remote":"127.0.0.1:44992","client":"conn22","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.956+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn22","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44992","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.956+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn23","msg":"client metadata","attr":{"remote":"127.0.0.1:44996","client":"conn23","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.956+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn23","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44996","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.957+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn23","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:57:22.966+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn23","msg":"Connection ended","attr":{"remote":"127.0.0.1:44996","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"91b68da9-2b92-4c9c-bcba-fe61e9c1e74d"}},"connectionId":23,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:22.966+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn22","msg":"Connection ended","attr":{"remote":"127.0.0.1:44992","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30e3ead0-db7a-4699-b231-0f1492397eb7"}},"connectionId":22,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:22.968+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:45002","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c5557b44-e36c-4e85-b121-334548927f47"}},"connectionId":24,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:22.968+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn24","msg":"client metadata","attr":{"remote":"127.0.0.1:45002","client":"conn24","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.968+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn24","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:45002","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.970+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:45018","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c1e6a911-17df-413b-9baa-c312a5c6dbde"}},"connectionId":25,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:22.970+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn25","msg":"client metadata","attr":{"remote":"127.0.0.1:45018","client":"conn25","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.970+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn25","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:45018","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.970+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:45022","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b5d745c3-ea60-4bec-ad9f-5823236afee2"}},"connectionId":26,"connectionCount":7}} -{"t":{"$date":"2026-03-24T07:57:22.971+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn26","msg":"client metadata","attr":{"remote":"127.0.0.1:45022","client":"conn26","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.971+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn26","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:45022","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:22.972+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn26","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T07:57:22.981+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn25","msg":"Connection ended","attr":{"remote":"127.0.0.1:45018","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c1e6a911-17df-413b-9baa-c312a5c6dbde"}},"connectionId":25,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:57:22.982+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn26","msg":"Connection ended","attr":{"remote":"127.0.0.1:45022","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b5d745c3-ea60-4bec-ad9f-5823236afee2"}},"connectionId":26,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:23.451+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn18","msg":"Interrupted operation as its client disconnected","attr":{"opId":22009}} -{"t":{"$date":"2026-03-24T07:57:23.451+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn18","msg":"Connection ended","attr":{"remote":"127.0.0.1:44946","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"73fb7bd5-3d2f-4bcc-ab73-4c507639912b"}},"connectionId":18,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:23.456+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn21","msg":"Interrupted operation as its client disconnected","attr":{"opId":22015}} -{"t":{"$date":"2026-03-24T07:57:23.457+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn21","msg":"Connection ended","attr":{"remote":"127.0.0.1:44988","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e24a0560-b89a-4319-8f53-218a69138ea8"}},"connectionId":21,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:23.470+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn24","msg":"Interrupted operation as its client disconnected","attr":{"opId":22022}} -{"t":{"$date":"2026-03-24T07:57:23.471+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn24","msg":"Connection ended","attr":{"remote":"127.0.0.1:45002","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c5557b44-e36c-4e85-b121-334548927f47"}},"connectionId":24,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:57:32.839+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44622","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e34a34a0-5af1-4e45-9154-3e466adfe9b4"}},"connectionId":27,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:32.839+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn27","msg":"client metadata","attr":{"remote":"127.0.0.1:44622","client":"conn27","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.839+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn27","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44622","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.840+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44630","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a449373a-e6f0-4399-84b2-a871a7e7fbd4"}},"connectionId":28,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:32.841+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:44644","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"533037bc-fcd4-40f8-ad8c-d1e60c82bc40"}},"connectionId":29,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:57:32.841+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn28","msg":"client metadata","attr":{"remote":"127.0.0.1:44630","client":"conn28","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.841+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn29","msg":"client metadata","attr":{"remote":"127.0.0.1:44644","client":"conn29","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.841+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn29","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44644","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.841+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn28","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:44630","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:57:32.842+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn29","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:57:32.859+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn29","msg":"Connection ended","attr":{"remote":"127.0.0.1:44644","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"533037bc-fcd4-40f8-ad8c-d1e60c82bc40"}},"connectionId":29,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:57:32.860+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn28","msg":"Connection ended","attr":{"remote":"127.0.0.1:44630","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a449373a-e6f0-4399-84b2-a871a7e7fbd4"}},"connectionId":28,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:57:33.341+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn27","msg":"Interrupted operation as its client disconnected","attr":{"opId":22152}} -{"t":{"$date":"2026-03-24T07:57:33.342+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn27","msg":"Connection ended","attr":{"remote":"127.0.0.1:44622","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e34a34a0-5af1-4e45-9154-3e466adfe9b4"}},"connectionId":27,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:58:06.513+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339086,"ts_usec":512971,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 37, snapshot max: 37 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:58:43.333+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:32904","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2b9d368b-be9f-4594-b298-d055b7338224"}},"connectionId":30,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:58:43.334+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn30","msg":"client metadata","attr":{"remote":"127.0.0.1:32904","client":"conn30","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.334+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn30","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:32904","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:32908","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"46141740-6db2-4952-bb7a-90445c04f10c"}},"connectionId":31,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:32924","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bce6d8f4-00e6-4156-8326-2fe7de0a1c5b"}},"connectionId":32,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn31","msg":"client metadata","attr":{"remote":"127.0.0.1:32908","client":"conn31","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn32","msg":"client metadata","attr":{"remote":"127.0.0.1:32924","client":"conn32","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn32","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:32924","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.335+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn31","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:32908","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:58:43.336+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn32","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:58:43.337+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn31","msg":"Connection ended","attr":{"remote":"127.0.0.1:32908","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"46141740-6db2-4952-bb7a-90445c04f10c"}},"connectionId":31,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:58:43.337+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn32","msg":"Connection ended","attr":{"remote":"127.0.0.1:32924","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bce6d8f4-00e6-4156-8326-2fe7de0a1c5b"}},"connectionId":32,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:58:43.836+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn30","msg":"Interrupted operation as its client disconnected","attr":{"opId":23045}} -{"t":{"$date":"2026-03-24T07:58:43.837+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn30","msg":"Connection ended","attr":{"remote":"127.0.0.1:32904","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2b9d368b-be9f-4594-b298-d055b7338224"}},"connectionId":30,"connectionCount":2}} -{"t":{"$date":"2026-03-24T07:59:06.527+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339146,"ts_usec":527260,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 38, snapshot max: 38 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T07:59:10.393+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38510","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7bb90874-8e43-49ea-8528-944db3418969"}},"connectionId":33,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:59:10.394+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn33","msg":"client metadata","attr":{"remote":"127.0.0.1:38510","client":"conn33","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.394+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn33","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38510","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.395+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38516","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ef50293c-d380-4ae9-a625-18e073ce7640"}},"connectionId":34,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:59:10.395+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn34","msg":"client metadata","attr":{"remote":"127.0.0.1:38516","client":"conn34","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.395+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38524","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"67982e9d-63e3-43b1-96ac-42e87f940e84"}},"connectionId":35,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:59:10.396+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn34","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38516","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.396+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn35","msg":"client metadata","attr":{"remote":"127.0.0.1:38524","client":"conn35","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.396+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn35","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38524","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.397+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn35","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:59:10.397+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn34","msg":"Connection ended","attr":{"remote":"127.0.0.1:38516","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ef50293c-d380-4ae9-a625-18e073ce7640"}},"connectionId":34,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:59:10.398+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn35","msg":"Connection ended","attr":{"remote":"127.0.0.1:38524","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"67982e9d-63e3-43b1-96ac-42e87f940e84"}},"connectionId":35,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:59:10.400+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38532","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c8e15427-5525-47dc-b2e4-32274c587bee"}},"connectionId":36,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:59:10.400+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn36","msg":"client metadata","attr":{"remote":"127.0.0.1:38532","client":"conn36","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.400+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn36","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38532","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38548","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"38bb653d-e14b-4df4-a645-7fe9b947f54f"}},"connectionId":37,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38556","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"54030e96-3af6-449c-ad5c-c51a498bb877"}},"connectionId":38,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn37","msg":"client metadata","attr":{"remote":"127.0.0.1:38548","client":"conn37","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn37","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38548","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn38","msg":"client metadata","attr":{"remote":"127.0.0.1:38556","client":"conn38","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.401+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn38","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38556","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.402+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn37","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:59:10.403+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn38","msg":"Connection ended","attr":{"remote":"127.0.0.1:38556","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"54030e96-3af6-449c-ad5c-c51a498bb877"}},"connectionId":38,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:59:10.403+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn37","msg":"Connection ended","attr":{"remote":"127.0.0.1:38548","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"38bb653d-e14b-4df4-a645-7fe9b947f54f"}},"connectionId":37,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:59:10.405+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38572","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c38b0a0c-e00c-42c8-be32-db6db168449b"}},"connectionId":39,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:59:10.405+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn39","msg":"client metadata","attr":{"remote":"127.0.0.1:38572","client":"conn39","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.406+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn39","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38572","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.406+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38578","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"581dde30-3e70-4197-8a84-033d02baecc6"}},"connectionId":40,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:59:10.407+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn40","msg":"client metadata","attr":{"remote":"127.0.0.1:38578","client":"conn40","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.407+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn40","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38578","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.407+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:38590","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d67a3f4d-7cc1-49e1-afcb-b203690d105c"}},"connectionId":41,"connectionCount":7}} -{"t":{"$date":"2026-03-24T07:59:10.407+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn41","msg":"client metadata","attr":{"remote":"127.0.0.1:38590","client":"conn41","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.407+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn41","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:38590","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T07:59:10.408+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn41","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T07:59:10.409+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn41","msg":"Connection ended","attr":{"remote":"127.0.0.1:38590","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d67a3f4d-7cc1-49e1-afcb-b203690d105c"}},"connectionId":41,"connectionCount":6}} -{"t":{"$date":"2026-03-24T07:59:10.409+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn40","msg":"Connection ended","attr":{"remote":"127.0.0.1:38578","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"581dde30-3e70-4197-8a84-033d02baecc6"}},"connectionId":40,"connectionCount":5}} -{"t":{"$date":"2026-03-24T07:59:10.896+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn33","msg":"Interrupted operation as its client disconnected","attr":{"opId":23390}} -{"t":{"$date":"2026-03-24T07:59:10.896+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn33","msg":"Connection ended","attr":{"remote":"127.0.0.1:38510","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7bb90874-8e43-49ea-8528-944db3418969"}},"connectionId":33,"connectionCount":4}} -{"t":{"$date":"2026-03-24T07:59:10.902+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn36","msg":"Interrupted operation as its client disconnected","attr":{"opId":23396}} -{"t":{"$date":"2026-03-24T07:59:10.902+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn36","msg":"Connection ended","attr":{"remote":"127.0.0.1:38532","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c8e15427-5525-47dc-b2e4-32274c587bee"}},"connectionId":36,"connectionCount":3}} -{"t":{"$date":"2026-03-24T07:59:10.909+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn39","msg":"Interrupted operation as its client disconnected","attr":{"opId":23402}} -{"t":{"$date":"2026-03-24T07:59:10.910+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn39","msg":"Connection ended","attr":{"remote":"127.0.0.1:38572","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c38b0a0c-e00c-42c8-be32-db6db168449b"}},"connectionId":39,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:00:06.534+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339206,"ts_usec":534154,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 39, snapshot max: 39 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:00:14.059+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34354","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b372e6c1-a072-44fa-923d-fbbbdc5a9a84"}},"connectionId":42,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:14.059+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn42","msg":"client metadata","attr":{"remote":"127.0.0.1:34354","client":"conn42","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.059+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn42","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34354","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.060+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34368","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"53708afe-ba6c-4d41-88c1-97e36b3a6296"}},"connectionId":43,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:14.060+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34384","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9db63580-db3e-4337-9b5e-12749d968fdb"}},"connectionId":44,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:14.061+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn43","msg":"client metadata","attr":{"remote":"127.0.0.1:34368","client":"conn43","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.061+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn43","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34368","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.061+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn44","msg":"client metadata","attr":{"remote":"127.0.0.1:34384","client":"conn44","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.061+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn44","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34384","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.062+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn44","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:14.062+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn43","msg":"Connection ended","attr":{"remote":"127.0.0.1:34368","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"53708afe-ba6c-4d41-88c1-97e36b3a6296"}},"connectionId":43,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:14.063+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn44","msg":"Connection ended","attr":{"remote":"127.0.0.1:34384","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9db63580-db3e-4337-9b5e-12749d968fdb"}},"connectionId":44,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:14.064+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34396","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2422a026-80e3-4e73-a7c0-6b762776c520"}},"connectionId":45,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:14.065+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn45","msg":"client metadata","attr":{"remote":"127.0.0.1:34396","client":"conn45","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.065+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn45","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34396","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.066+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34410","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"8f45798f-ec5d-44ce-bb4d-58c5bebae2f8"}},"connectionId":46,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:14.066+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn46","msg":"client metadata","attr":{"remote":"127.0.0.1:34410","client":"conn46","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.067+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn46","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34410","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.067+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:34426","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ef090b16-a7be-439c-b830-96524590f09b"}},"connectionId":47,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:14.069+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn47","msg":"client metadata","attr":{"remote":"127.0.0.1:34426","client":"conn47","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.069+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn47","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:34426","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:14.070+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn47","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:14.071+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn46","msg":"Connection ended","attr":{"remote":"127.0.0.1:34410","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"8f45798f-ec5d-44ce-bb4d-58c5bebae2f8"}},"connectionId":46,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:14.071+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn47","msg":"Connection ended","attr":{"remote":"127.0.0.1:34426","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ef090b16-a7be-439c-b830-96524590f09b"}},"connectionId":47,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:14.561+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn42","msg":"Interrupted operation as its client disconnected","attr":{"opId":24204}} -{"t":{"$date":"2026-03-24T08:00:14.562+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn42","msg":"Connection ended","attr":{"remote":"127.0.0.1:34354","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b372e6c1-a072-44fa-923d-fbbbdc5a9a84"}},"connectionId":42,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:14.566+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn45","msg":"Interrupted operation as its client disconnected","attr":{"opId":24213}} -{"t":{"$date":"2026-03-24T08:00:14.567+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn45","msg":"Connection ended","attr":{"remote":"127.0.0.1:34396","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2422a026-80e3-4e73-a7c0-6b762776c520"}},"connectionId":45,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:00:24.034+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35422","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ee2067d9-23ff-46d4-a295-1dd644317606"}},"connectionId":48,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:24.034+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn48","msg":"client metadata","attr":{"remote":"127.0.0.1:35422","client":"conn48","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.034+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn48","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35422","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.035+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35428","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ece4e9db-892b-42ea-a535-6ccbbdec8618"}},"connectionId":49,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:24.036+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35430","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f2f37ebc-6a1c-4898-894a-31b325b35f93"}},"connectionId":50,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.036+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn50","msg":"client metadata","attr":{"remote":"127.0.0.1:35430","client":"conn50","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.036+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn50","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35430","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.036+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn49","msg":"client metadata","attr":{"remote":"127.0.0.1:35428","client":"conn49","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.036+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn49","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35428","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.037+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn49","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:24.037+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn50","msg":"Connection ended","attr":{"remote":"127.0.0.1:35430","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f2f37ebc-6a1c-4898-894a-31b325b35f93"}},"connectionId":50,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:24.038+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn49","msg":"Connection ended","attr":{"remote":"127.0.0.1:35428","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ece4e9db-892b-42ea-a535-6ccbbdec8618"}},"connectionId":49,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:24.039+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35436","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ceae89d4-4f53-47c9-ad47-67c4cd94e182"}},"connectionId":51,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:24.039+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn51","msg":"client metadata","attr":{"remote":"127.0.0.1:35436","client":"conn51","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.039+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn51","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35436","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.040+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35448","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"175748c9-795e-4519-99d6-fdaab4f0a0a9"}},"connectionId":52,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35454","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d7a90a5e-00af-4f19-8ea5-1ab49827ddaf"}},"connectionId":53,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn52","msg":"client metadata","attr":{"remote":"127.0.0.1:35448","client":"conn52","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn52","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35448","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn53","msg":"client metadata","attr":{"remote":"127.0.0.1:35454","client":"conn53","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn53","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35454","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.041+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn52","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:24.043+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn53","msg":"Connection ended","attr":{"remote":"127.0.0.1:35454","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d7a90a5e-00af-4f19-8ea5-1ab49827ddaf"}},"connectionId":53,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.043+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn52","msg":"Connection ended","attr":{"remote":"127.0.0.1:35448","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"175748c9-795e-4519-99d6-fdaab4f0a0a9"}},"connectionId":52,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:24.137+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35470","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9e14f5bc-5863-47fa-be25-f7c23aef1dda"}},"connectionId":54,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.137+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn54","msg":"client metadata","attr":{"remote":"127.0.0.1:35470","client":"conn54","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.137+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn54","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35470","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.138+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35486","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"60380bff-919e-4544-82bb-fea8ed78a83b"}},"connectionId":55,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:24.139+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35502","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ddca3bfc-f0b0-400e-b465-8633531f42c7"}},"connectionId":56,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:24.139+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn55","msg":"client metadata","attr":{"remote":"127.0.0.1:35486","client":"conn55","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.139+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn55","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35486","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.139+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn56","msg":"client metadata","attr":{"remote":"127.0.0.1:35502","client":"conn56","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.139+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn56","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35502","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.140+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn56","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:24.141+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn56","msg":"Connection ended","attr":{"remote":"127.0.0.1:35502","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ddca3bfc-f0b0-400e-b465-8633531f42c7"}},"connectionId":56,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:24.141+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn55","msg":"Connection ended","attr":{"remote":"127.0.0.1:35486","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"60380bff-919e-4544-82bb-fea8ed78a83b"}},"connectionId":55,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.143+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35510","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"fc62a5b0-3754-4345-8470-4d03d8060bbf"}},"connectionId":57,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:24.144+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn57","msg":"client metadata","attr":{"remote":"127.0.0.1:35510","client":"conn57","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.144+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn57","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35510","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.145+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35520","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1cfab820-8229-45ad-b1d9-40e8c44b4d56"}},"connectionId":58,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:24.145+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35526","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e7973404-edf4-419d-a42c-725020eecc67"}},"connectionId":59,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:00:24.145+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn58","msg":"client metadata","attr":{"remote":"127.0.0.1:35520","client":"conn58","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.147+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn58","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35520","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.147+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn59","msg":"client metadata","attr":{"remote":"127.0.0.1:35526","client":"conn59","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.147+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn59","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35526","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:24.148+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn58","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":2}} -{"t":{"$date":"2026-03-24T08:00:24.149+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn59","msg":"Connection ended","attr":{"remote":"127.0.0.1:35526","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e7973404-edf4-419d-a42c-725020eecc67"}},"connectionId":59,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:24.149+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn58","msg":"Connection ended","attr":{"remote":"127.0.0.1:35520","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1cfab820-8229-45ad-b1d9-40e8c44b4d56"}},"connectionId":58,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:24.536+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn48","msg":"Interrupted operation as its client disconnected","attr":{"opId":24339}} -{"t":{"$date":"2026-03-24T08:00:24.537+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn48","msg":"Connection ended","attr":{"remote":"127.0.0.1:35422","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ee2067d9-23ff-46d4-a295-1dd644317606"}},"connectionId":48,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:24.541+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn51","msg":"Interrupted operation as its client disconnected","attr":{"opId":24345}} -{"t":{"$date":"2026-03-24T08:00:24.541+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn51","msg":"Connection ended","attr":{"remote":"127.0.0.1:35436","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ceae89d4-4f53-47c9-ad47-67c4cd94e182"}},"connectionId":51,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:24.640+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn54","msg":"Interrupted operation as its client disconnected","attr":{"opId":24354}} -{"t":{"$date":"2026-03-24T08:00:24.641+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn54","msg":"Connection ended","attr":{"remote":"127.0.0.1:35470","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9e14f5bc-5863-47fa-be25-f7c23aef1dda"}},"connectionId":54,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:24.648+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn57","msg":"Interrupted operation as its client disconnected","attr":{"opId":24362}} -{"t":{"$date":"2026-03-24T08:00:24.649+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn57","msg":"Connection ended","attr":{"remote":"127.0.0.1:35510","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"fc62a5b0-3754-4345-8470-4d03d8060bbf"}},"connectionId":57,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:00:25.252+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35538","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6033fbb4-d35d-4798-ab6c-9ae72cdcb910"}},"connectionId":60,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:25.252+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn60","msg":"client metadata","attr":{"remote":"127.0.0.1:35538","client":"conn60","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.253+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn60","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35538","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35546","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2913ddc2-79b0-4ac4-a1e0-a160755b39c9"}},"connectionId":61,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35560","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"53d08155-0e89-4e60-843b-183e18c9db66"}},"connectionId":62,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn61","msg":"client metadata","attr":{"remote":"127.0.0.1:35546","client":"conn61","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn61","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35546","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn62","msg":"client metadata","attr":{"remote":"127.0.0.1:35560","client":"conn62","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.254+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn62","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35560","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.255+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn61","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:25.256+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn62","msg":"Connection ended","attr":{"remote":"127.0.0.1:35560","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"53d08155-0e89-4e60-843b-183e18c9db66"}},"connectionId":62,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:25.256+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn61","msg":"Connection ended","attr":{"remote":"127.0.0.1:35546","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2913ddc2-79b0-4ac4-a1e0-a160755b39c9"}},"connectionId":61,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:25.258+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35566","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30ce1160-594c-413a-b5f5-14785d0a824a"}},"connectionId":63,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:25.258+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn63","msg":"client metadata","attr":{"remote":"127.0.0.1:35566","client":"conn63","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.258+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn63","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35566","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.259+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35580","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"df6fd866-ac3b-4f3c-9cd0-1eb1f0566b4d"}},"connectionId":64,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.259+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35594","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f5a8031e-0ff3-4178-a664-9275133d2619"}},"connectionId":65,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:25.259+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn64","msg":"client metadata","attr":{"remote":"127.0.0.1:35580","client":"conn64","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.260+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn64","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35580","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.260+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn65","msg":"client metadata","attr":{"remote":"127.0.0.1:35594","client":"conn65","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.260+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn65","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35594","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.260+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn65","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:25.261+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn64","msg":"Connection ended","attr":{"remote":"127.0.0.1:35580","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"df6fd866-ac3b-4f3c-9cd0-1eb1f0566b4d"}},"connectionId":64,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.261+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn65","msg":"Connection ended","attr":{"remote":"127.0.0.1:35594","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f5a8031e-0ff3-4178-a664-9275133d2619"}},"connectionId":65,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:25.390+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35600","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"42388617-53f0-4c63-8154-88e1bc4046c5"}},"connectionId":66,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.390+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn66","msg":"client metadata","attr":{"remote":"127.0.0.1:35600","client":"conn66","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.390+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn66","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35600","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.391+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35606","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6d6af873-e60b-49db-a449-ea0f2cef3e7b"}},"connectionId":67,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:25.392+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35608","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9498dfc9-6238-49fb-9a07-ef045da42fb3"}},"connectionId":68,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:25.392+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn67","msg":"client metadata","attr":{"remote":"127.0.0.1:35606","client":"conn67","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.392+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn67","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35606","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.392+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn68","msg":"client metadata","attr":{"remote":"127.0.0.1:35608","client":"conn68","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.392+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn68","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35608","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.393+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn68","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:25.393+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn67","msg":"Connection ended","attr":{"remote":"127.0.0.1:35606","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6d6af873-e60b-49db-a449-ea0f2cef3e7b"}},"connectionId":67,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:25.394+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn68","msg":"Connection ended","attr":{"remote":"127.0.0.1:35608","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9498dfc9-6238-49fb-9a07-ef045da42fb3"}},"connectionId":68,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.395+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35624","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"36440b08-6be4-4c37-81dc-d7f522619cc2"}},"connectionId":69,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:25.396+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn69","msg":"client metadata","attr":{"remote":"127.0.0.1:35624","client":"conn69","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.396+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn69","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35624","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.397+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35636","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d4474316-8251-44fc-ac00-eef6cc6518c9"}},"connectionId":70,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:25.397+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn70","msg":"client metadata","attr":{"remote":"127.0.0.1:35636","client":"conn70","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.397+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn70","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35636","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.397+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:35638","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"fb6ca7e7-4efb-4209-b73d-47c9e3cce7a0"}},"connectionId":71,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:00:25.398+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn71","msg":"client metadata","attr":{"remote":"127.0.0.1:35638","client":"conn71","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.398+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn71","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:35638","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:25.398+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn71","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:25.400+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn70","msg":"Connection ended","attr":{"remote":"127.0.0.1:35636","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d4474316-8251-44fc-ac00-eef6cc6518c9"}},"connectionId":70,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:00:25.400+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn71","msg":"Connection ended","attr":{"remote":"127.0.0.1:35638","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"fb6ca7e7-4efb-4209-b73d-47c9e3cce7a0"}},"connectionId":71,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:25.754+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn60","msg":"Interrupted operation as its client disconnected","attr":{"opId":24381}} -{"t":{"$date":"2026-03-24T08:00:25.761+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn63","msg":"Interrupted operation as its client disconnected","attr":{"opId":24387}} -{"t":{"$date":"2026-03-24T08:00:25.762+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn60","msg":"Connection ended","attr":{"remote":"127.0.0.1:35538","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6033fbb4-d35d-4798-ab6c-9ae72cdcb910"}},"connectionId":60,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:25.769+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn63","msg":"Connection ended","attr":{"remote":"127.0.0.1:35566","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30ce1160-594c-413a-b5f5-14785d0a824a"}},"connectionId":63,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:25.892+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn66","msg":"Interrupted operation as its client disconnected","attr":{"opId":24396}} -{"t":{"$date":"2026-03-24T08:00:25.893+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn66","msg":"Connection ended","attr":{"remote":"127.0.0.1:35600","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"42388617-53f0-4c63-8154-88e1bc4046c5"}},"connectionId":66,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:25.898+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn69","msg":"Interrupted operation as its client disconnected","attr":{"opId":24401}} -{"t":{"$date":"2026-03-24T08:00:25.898+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn69","msg":"Connection ended","attr":{"remote":"127.0.0.1:35624","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"36440b08-6be4-4c37-81dc-d7f522619cc2"}},"connectionId":69,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:00:37.373+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33318","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e405a65c-a805-45ac-8980-0ed3905cda1e"}},"connectionId":72,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:37.373+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn72","msg":"client metadata","attr":{"remote":"127.0.0.1:33318","client":"conn72","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.374+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn72","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33318","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.374+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a3f912ca-6a52-48b1-a231-464094788224"}},"connectionId":73,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33326","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"448c68f2-ad38-4208-8c3c-b60db1ffd7d7"}},"connectionId":74,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn73","msg":"client metadata","attr":{"remote":"127.0.0.1:33322","client":"conn73","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn73","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33322","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn74","msg":"client metadata","attr":{"remote":"127.0.0.1:33326","client":"conn74","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn74","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33326","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.375+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn73","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:37.376+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn74","msg":"Connection ended","attr":{"remote":"127.0.0.1:33326","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"448c68f2-ad38-4208-8c3c-b60db1ffd7d7"}},"connectionId":74,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:37.377+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn73","msg":"Connection ended","attr":{"remote":"127.0.0.1:33322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a3f912ca-6a52-48b1-a231-464094788224"}},"connectionId":73,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:37.378+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33340","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a2a74c51-f1be-4ffb-ac50-a289a9b33ccf"}},"connectionId":75,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:37.378+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn75","msg":"client metadata","attr":{"remote":"127.0.0.1:33340","client":"conn75","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.378+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn75","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33340","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.379+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33356","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"090802e2-9617-4d7a-8f1f-b90729f3d43b"}},"connectionId":76,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:37.380+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:33370","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f3d24aba-682d-493e-ad3b-8c4ca45a5f69"}},"connectionId":77,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:37.380+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn76","msg":"client metadata","attr":{"remote":"127.0.0.1:33356","client":"conn76","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.380+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn76","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33356","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.380+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn77","msg":"client metadata","attr":{"remote":"127.0.0.1:33370","client":"conn77","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.380+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn77","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:33370","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:37.381+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn76","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:00:37.382+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn77","msg":"Connection ended","attr":{"remote":"127.0.0.1:33370","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f3d24aba-682d-493e-ad3b-8c4ca45a5f69"}},"connectionId":77,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:37.382+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn76","msg":"Connection ended","attr":{"remote":"127.0.0.1:33356","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"090802e2-9617-4d7a-8f1f-b90729f3d43b"}},"connectionId":76,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:37.875+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn72","msg":"Interrupted operation as its client disconnected","attr":{"opId":24557}} -{"t":{"$date":"2026-03-24T08:00:37.876+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn72","msg":"Connection ended","attr":{"remote":"127.0.0.1:33318","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e405a65c-a805-45ac-8980-0ed3905cda1e"}},"connectionId":72,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:37.879+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn75","msg":"Interrupted operation as its client disconnected","attr":{"opId":24563}} -{"t":{"$date":"2026-03-24T08:00:37.880+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn75","msg":"Connection ended","attr":{"remote":"127.0.0.1:33340","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a2a74c51-f1be-4ffb-ac50-a289a9b33ccf"}},"connectionId":75,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:00:54.646+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49014","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0212e4fb-4115-40fb-9390-a39115a863f3"}},"connectionId":78,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:54.647+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn78","msg":"client metadata","attr":{"remote":"127.0.0.1:49014","client":"conn78","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.647+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn78","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49014","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.648+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49024","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c335967c-8894-4746-b19f-d2b55b53ede7"}},"connectionId":79,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:54.649+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49028","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"dae76fd4-a2fe-4f6a-9394-6a660ec27c09"}},"connectionId":80,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:54.649+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn79","msg":"client metadata","attr":{"remote":"127.0.0.1:49024","client":"conn79","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.649+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn79","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49024","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.649+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn80","msg":"client metadata","attr":{"remote":"127.0.0.1:49028","client":"conn80","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.649+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn80","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49028","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.650+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn80","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:54.651+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn79","msg":"Connection ended","attr":{"remote":"127.0.0.1:49024","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c335967c-8894-4746-b19f-d2b55b53ede7"}},"connectionId":79,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:54.651+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn80","msg":"Connection ended","attr":{"remote":"127.0.0.1:49028","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"dae76fd4-a2fe-4f6a-9394-6a660ec27c09"}},"connectionId":80,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:54.652+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49044","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b58b05ff-a150-4f90-9f17-b93951bd26af"}},"connectionId":81,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:54.653+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn81","msg":"client metadata","attr":{"remote":"127.0.0.1:49044","client":"conn81","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.653+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn81","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49044","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.654+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"216873a2-5b2e-49c0-a83d-2375c309132c"}},"connectionId":82,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:54.654+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:49054","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"28876534-58db-45e3-b8af-34f71d06a534"}},"connectionId":83,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:00:54.654+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn82","msg":"client metadata","attr":{"remote":"127.0.0.1:49052","client":"conn82","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.654+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn82","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49052","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.654+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn83","msg":"client metadata","attr":{"remote":"127.0.0.1:49054","client":"conn83","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.655+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn83","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:49054","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:00:54.655+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn83","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:00:54.656+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn82","msg":"Connection ended","attr":{"remote":"127.0.0.1:49052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"216873a2-5b2e-49c0-a83d-2375c309132c"}},"connectionId":82,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:00:54.657+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn83","msg":"Connection ended","attr":{"remote":"127.0.0.1:49054","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"28876534-58db-45e3-b8af-34f71d06a534"}},"connectionId":83,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:00:55.149+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn78","msg":"Interrupted operation as its client disconnected","attr":{"opId":24783}} -{"t":{"$date":"2026-03-24T08:00:55.149+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn78","msg":"Connection ended","attr":{"remote":"127.0.0.1:49014","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0212e4fb-4115-40fb-9390-a39115a863f3"}},"connectionId":78,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:00:55.154+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn81","msg":"Interrupted operation as its client disconnected","attr":{"opId":24790}} -{"t":{"$date":"2026-03-24T08:00:55.155+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn81","msg":"Connection ended","attr":{"remote":"127.0.0.1:49044","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b58b05ff-a150-4f90-9f17-b93951bd26af"}},"connectionId":81,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:01:06.545+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339266,"ts_usec":545192,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 43, snapshot max: 43 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:02:06.554+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339326,"ts_usec":554006,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 44, snapshot max: 44 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:03:06.562+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339386,"ts_usec":562013,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 45, snapshot max: 45 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:04:06.589+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339446,"ts_usec":589721,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 46, snapshot max: 46 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:05:06.598+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339506,"ts_usec":598146,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 47, snapshot max: 47 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:06:06.605+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339566,"ts_usec":605663,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 48, snapshot max: 48 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:07:06.612+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339626,"ts_usec":612225,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 49, snapshot max: 49 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:08:06.619+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339686,"ts_usec":619097,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 50, snapshot max: 50 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:09:06.627+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339746,"ts_usec":627810,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 51, snapshot max: 51 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:10:06.635+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339806,"ts_usec":635083,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 52, snapshot max: 52 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:11:06.643+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339866,"ts_usec":643014,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 53, snapshot max: 53 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:11:11.457+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:36126","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"679efad9-da73-48d2-b908-df9e6c7bf0c2"}},"connectionId":84,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:11.457+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn84","msg":"client metadata","attr":{"remote":"127.0.0.1:36126","client":"conn84","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.457+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn84","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:36126","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.458+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:36134","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"57fa7b18-5251-4200-92a5-a6785bad5cfc"}},"connectionId":85,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:11.459+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:36140","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3726bc38-8333-4cbf-a88e-db7d0fdd4463"}},"connectionId":86,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:11.459+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn85","msg":"client metadata","attr":{"remote":"127.0.0.1:36134","client":"conn85","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.459+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn85","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:36134","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.459+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn86","msg":"client metadata","attr":{"remote":"127.0.0.1:36140","client":"conn86","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.459+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn86","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:36140","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:11.460+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn85","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:11.461+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn86","msg":"Connection ended","attr":{"remote":"127.0.0.1:36140","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3726bc38-8333-4cbf-a88e-db7d0fdd4463"}},"connectionId":86,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:11.461+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn85","msg":"Connection ended","attr":{"remote":"127.0.0.1:36134","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"57fa7b18-5251-4200-92a5-a6785bad5cfc"}},"connectionId":85,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:11.959+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn84","msg":"Interrupted operation as its client disconnected","attr":{"opId":32516}} -{"t":{"$date":"2026-03-24T08:11:11.960+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn84","msg":"Connection ended","attr":{"remote":"127.0.0.1:36126","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"679efad9-da73-48d2-b908-df9e6c7bf0c2"}},"connectionId":84,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:11:20.599+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52362","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ba481a3b-ce2a-4836-aafd-ca7982981e25"}},"connectionId":87,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:20.600+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn87","msg":"client metadata","attr":{"remote":"127.0.0.1:52362","client":"conn87","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.600+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn87","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52362","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.601+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52374","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0117f41b-b7ac-49b3-9f1d-c80b5837209e"}},"connectionId":88,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:20.601+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52378","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1748eb53-7e01-48b1-a35d-d7aa05b1dfdd"}},"connectionId":89,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:20.601+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn88","msg":"client metadata","attr":{"remote":"127.0.0.1:52374","client":"conn88","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.601+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn88","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52374","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.601+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn89","msg":"client metadata","attr":{"remote":"127.0.0.1:52378","client":"conn89","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.602+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn89","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52378","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.602+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn88","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:20.603+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn89","msg":"Connection ended","attr":{"remote":"127.0.0.1:52378","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1748eb53-7e01-48b1-a35d-d7aa05b1dfdd"}},"connectionId":89,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:20.603+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn88","msg":"Connection ended","attr":{"remote":"127.0.0.1:52374","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0117f41b-b7ac-49b3-9f1d-c80b5837209e"}},"connectionId":88,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:20.605+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52380","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7cad5d63-bbd4-4350-8a8a-e06aa54cbb69"}},"connectionId":90,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:20.605+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn90","msg":"client metadata","attr":{"remote":"127.0.0.1:52380","client":"conn90","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.606+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn90","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52380","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52384","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5da47b08-ce32-4b8a-8592-396fd157afb1"}},"connectionId":91,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52392","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ca404870-4ac9-4209-85b8-db7aa5d9f9e5"}},"connectionId":92,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn91","msg":"client metadata","attr":{"remote":"127.0.0.1:52384","client":"conn91","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn91","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52384","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn92","msg":"client metadata","attr":{"remote":"127.0.0.1:52392","client":"conn92","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.607+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn92","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52392","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.608+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn91","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:20.666+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn92","msg":"Connection ended","attr":{"remote":"127.0.0.1:52392","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ca404870-4ac9-4209-85b8-db7aa5d9f9e5"}},"connectionId":92,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:20.668+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn91","msg":"Connection ended","attr":{"remote":"127.0.0.1:52384","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5da47b08-ce32-4b8a-8592-396fd157afb1"}},"connectionId":91,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:20.670+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52402","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d5ce201d-21e6-4f73-a594-fe33e0bb2133"}},"connectionId":93,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:20.671+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn93","msg":"client metadata","attr":{"remote":"127.0.0.1:52402","client":"conn93","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.671+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn93","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52402","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.672+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52406","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"240a0a3e-a770-4587-9a39-cd0f6c92f7be"}},"connectionId":94,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:20.672+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:52422","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"cc7d9b2d-881c-4ec0-ac88-6d9bb9357b53"}},"connectionId":95,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:20.672+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn94","msg":"client metadata","attr":{"remote":"127.0.0.1:52406","client":"conn94","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.673+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn94","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52406","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.673+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn95","msg":"client metadata","attr":{"remote":"127.0.0.1:52422","client":"conn95","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.673+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn95","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:52422","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:20.673+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn94","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:20.676+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn95","msg":"Connection ended","attr":{"remote":"127.0.0.1:52422","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"cc7d9b2d-881c-4ec0-ac88-6d9bb9357b53"}},"connectionId":95,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:20.677+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn94","msg":"Connection ended","attr":{"remote":"127.0.0.1:52406","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"240a0a3e-a770-4587-9a39-cd0f6c92f7be"}},"connectionId":94,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:21.102+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn87","msg":"Interrupted operation as its client disconnected","attr":{"opId":32636}} -{"t":{"$date":"2026-03-24T08:11:21.102+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn87","msg":"Connection ended","attr":{"remote":"127.0.0.1:52362","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ba481a3b-ce2a-4836-aafd-ca7982981e25"}},"connectionId":87,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:21.108+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn90","msg":"Interrupted operation as its client disconnected","attr":{"opId":32642}} -{"t":{"$date":"2026-03-24T08:11:21.108+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn90","msg":"Connection ended","attr":{"remote":"127.0.0.1:52380","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7cad5d63-bbd4-4350-8a8a-e06aa54cbb69"}},"connectionId":90,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:21.174+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn93","msg":"Interrupted operation as its client disconnected","attr":{"opId":32649}} -{"t":{"$date":"2026-03-24T08:11:21.175+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn93","msg":"Connection ended","attr":{"remote":"127.0.0.1:52402","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d5ce201d-21e6-4f73-a594-fe33e0bb2133"}},"connectionId":93,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:11:30.444+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53544","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bc99929b-a195-445e-a9f3-24158362f660"}},"connectionId":96,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:30.445+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn96","msg":"client metadata","attr":{"remote":"127.0.0.1:53544","client":"conn96","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.445+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn96","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53544","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.446+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53556","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9cb7b548-4584-4523-8639-dd0aa8fa6162"}},"connectionId":97,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:30.446+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53562","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"58808109-6a91-4f6d-8473-8c24a4df8fb0"}},"connectionId":98,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:30.446+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn97","msg":"client metadata","attr":{"remote":"127.0.0.1:53556","client":"conn97","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.447+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn97","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53556","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.447+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn98","msg":"client metadata","attr":{"remote":"127.0.0.1:53562","client":"conn98","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.447+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn98","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53562","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.447+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn98","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:30.448+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn97","msg":"Connection ended","attr":{"remote":"127.0.0.1:53556","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9cb7b548-4584-4523-8639-dd0aa8fa6162"}},"connectionId":97,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:30.448+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn98","msg":"Connection ended","attr":{"remote":"127.0.0.1:53562","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"58808109-6a91-4f6d-8473-8c24a4df8fb0"}},"connectionId":98,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:30.450+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53572","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bd945de9-8523-4de5-a232-6a3d258748bc"}},"connectionId":99,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:30.450+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn99","msg":"client metadata","attr":{"remote":"127.0.0.1:53572","client":"conn99","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.450+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn99","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53572","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.451+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53582","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c0a16515-e3a0-46fb-b78a-caa6aecd803d"}},"connectionId":100,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:30.451+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53584","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a48542b4-5989-4dc2-ae59-d8dd50d3f143"}},"connectionId":101,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:30.451+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn100","msg":"client metadata","attr":{"remote":"127.0.0.1:53582","client":"conn100","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.451+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn100","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53582","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.451+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn101","msg":"client metadata","attr":{"remote":"127.0.0.1:53584","client":"conn101","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.452+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn101","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53584","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.452+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn100","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:30.453+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn101","msg":"Connection ended","attr":{"remote":"127.0.0.1:53584","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a48542b4-5989-4dc2-ae59-d8dd50d3f143"}},"connectionId":101,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:30.453+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn100","msg":"Connection ended","attr":{"remote":"127.0.0.1:53582","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c0a16515-e3a0-46fb-b78a-caa6aecd803d"}},"connectionId":100,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:30.454+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53598","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"60d0190a-a919-4d80-b9c7-a8a85ee1bca6"}},"connectionId":102,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:30.455+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn102","msg":"client metadata","attr":{"remote":"127.0.0.1:53598","client":"conn102","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.456+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn102","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53598","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53606","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5b881187-92b2-4df2-95e9-59fc8eb52ff3"}},"connectionId":103,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:53622","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d77d7aaf-a9f2-4c1a-a509-b8f98b72e5d8"}},"connectionId":104,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn104","msg":"client metadata","attr":{"remote":"127.0.0.1:53622","client":"conn104","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn104","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53622","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn103","msg":"client metadata","attr":{"remote":"127.0.0.1:53606","client":"conn103","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.457+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn103","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:53606","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:30.458+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn103","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:30.459+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn103","msg":"Connection ended","attr":{"remote":"127.0.0.1:53606","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5b881187-92b2-4df2-95e9-59fc8eb52ff3"}},"connectionId":103,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:30.460+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn104","msg":"Connection ended","attr":{"remote":"127.0.0.1:53622","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d77d7aaf-a9f2-4c1a-a509-b8f98b72e5d8"}},"connectionId":104,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:30.947+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn96","msg":"Interrupted operation as its client disconnected","attr":{"opId":32778}} -{"t":{"$date":"2026-03-24T08:11:30.947+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn96","msg":"Connection ended","attr":{"remote":"127.0.0.1:53544","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bc99929b-a195-445e-a9f3-24158362f660"}},"connectionId":96,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:30.952+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn99","msg":"Interrupted operation as its client disconnected","attr":{"opId":32784}} -{"t":{"$date":"2026-03-24T08:11:30.952+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn99","msg":"Connection ended","attr":{"remote":"127.0.0.1:53572","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bd945de9-8523-4de5-a232-6a3d258748bc"}},"connectionId":99,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:30.958+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn102","msg":"Interrupted operation as its client disconnected","attr":{"opId":32790}} -{"t":{"$date":"2026-03-24T08:11:30.958+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn102","msg":"Connection ended","attr":{"remote":"127.0.0.1:53598","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"60d0190a-a919-4d80-b9c7-a8a85ee1bca6"}},"connectionId":102,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:11:51.858+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54190","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2213c522-1514-4625-a010-2d278a460da1"}},"connectionId":105,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:51.858+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn105","msg":"client metadata","attr":{"remote":"127.0.0.1:54190","client":"conn105","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.858+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn105","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54190","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.860+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54196","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3399bf73-ae23-4d5a-96a6-bda741a02fd3"}},"connectionId":106,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:51.860+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54208","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9d9aa65a-12a4-4ee1-aa68-3c8f0fd89151"}},"connectionId":107,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:51.861+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn106","msg":"client metadata","attr":{"remote":"127.0.0.1:54196","client":"conn106","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.861+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn106","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54196","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.861+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn107","msg":"client metadata","attr":{"remote":"127.0.0.1:54208","client":"conn107","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.861+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn107","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54208","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.862+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn106","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:51.862+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn107","msg":"Connection ended","attr":{"remote":"127.0.0.1:54208","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9d9aa65a-12a4-4ee1-aa68-3c8f0fd89151"}},"connectionId":107,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:51.863+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn106","msg":"Connection ended","attr":{"remote":"127.0.0.1:54196","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3399bf73-ae23-4d5a-96a6-bda741a02fd3"}},"connectionId":106,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:51.864+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54224","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"99d48a2d-212c-47a4-94e2-256d206b2189"}},"connectionId":108,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:51.864+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn108","msg":"client metadata","attr":{"remote":"127.0.0.1:54224","client":"conn108","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.864+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn108","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54224","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.865+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54240","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f1cd298c-1a7f-48d5-a980-4237b07c35f2"}},"connectionId":109,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:51.865+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54256","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bf5becd9-b080-4539-8d1b-2174639f042f"}},"connectionId":110,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:51.866+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn109","msg":"client metadata","attr":{"remote":"127.0.0.1:54240","client":"conn109","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.866+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn110","msg":"client metadata","attr":{"remote":"127.0.0.1:54256","client":"conn110","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.866+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn110","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54256","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.866+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn109","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54240","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.866+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn109","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:51.867+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn110","msg":"Connection ended","attr":{"remote":"127.0.0.1:54256","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"bf5becd9-b080-4539-8d1b-2174639f042f"}},"connectionId":110,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:51.867+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn109","msg":"Connection ended","attr":{"remote":"127.0.0.1:54240","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f1cd298c-1a7f-48d5-a980-4237b07c35f2"}},"connectionId":109,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:51.955+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54258","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b8d34530-f5d8-4aba-8fec-7aae9b78a9c7"}},"connectionId":111,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:51.956+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn111","msg":"client metadata","attr":{"remote":"127.0.0.1:54258","client":"conn111","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.956+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn111","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54258","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54266","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1e2790fa-c2ca-499b-b8bb-74836fba9428"}},"connectionId":112,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn112","msg":"client metadata","attr":{"remote":"127.0.0.1:54266","client":"conn112","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn112","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54266","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54274","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c099fd75-7f2d-4a3a-86f8-98d1ca7b5907"}},"connectionId":113,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn113","msg":"client metadata","attr":{"remote":"127.0.0.1:54274","client":"conn113","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.957+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn113","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54274","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.958+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn112","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:51.958+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn113","msg":"Connection ended","attr":{"remote":"127.0.0.1:54274","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"c099fd75-7f2d-4a3a-86f8-98d1ca7b5907"}},"connectionId":113,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:51.959+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn112","msg":"Connection ended","attr":{"remote":"127.0.0.1:54266","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1e2790fa-c2ca-499b-b8bb-74836fba9428"}},"connectionId":112,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:51.960+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54288","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6c59e4fc-96de-4931-a0c0-4b879447ec5e"}},"connectionId":114,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:51.961+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn114","msg":"client metadata","attr":{"remote":"127.0.0.1:54288","client":"conn114","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.961+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn114","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54288","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.962+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54294","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"397d33a5-1a3c-499d-8a86-b346573c264a"}},"connectionId":115,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:51.962+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn115","msg":"client metadata","attr":{"remote":"127.0.0.1:54294","client":"conn115","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.962+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn115","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54294","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.962+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54308","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"51b3746d-a392-4750-bf31-3db35a9fb98d"}},"connectionId":116,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:11:51.962+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn116","msg":"client metadata","attr":{"remote":"127.0.0.1:54308","client":"conn116","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.963+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn116","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54308","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.963+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn116","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:51.964+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn115","msg":"Connection ended","attr":{"remote":"127.0.0.1:54294","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"397d33a5-1a3c-499d-8a86-b346573c264a"}},"connectionId":115,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:51.964+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn116","msg":"Connection ended","attr":{"remote":"127.0.0.1:54308","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"51b3746d-a392-4750-bf31-3db35a9fb98d"}},"connectionId":116,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:51.965+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"96931fb2-9b41-4834-aa78-ce966d0f3b6a"}},"connectionId":117,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:51.966+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn117","msg":"client metadata","attr":{"remote":"127.0.0.1:54322","client":"conn117","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.966+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn117","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54322","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.967+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54326","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"08f3663e-5dbe-4ddc-81ad-d9e6238fedba"}},"connectionId":118,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:11:51.968+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:54336","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b9edc1c2-5a2c-4723-89e8-384755de8a6a"}},"connectionId":119,"connectionCount":9}} -{"t":{"$date":"2026-03-24T08:11:51.968+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn118","msg":"client metadata","attr":{"remote":"127.0.0.1:54326","client":"conn118","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.968+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn118","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54326","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.969+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn118","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:11:51.969+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn119","msg":"client metadata","attr":{"remote":"127.0.0.1:54336","client":"conn119","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.969+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn119","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:54336","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:11:51.970+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn119","msg":"Connection ended","attr":{"remote":"127.0.0.1:54336","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b9edc1c2-5a2c-4723-89e8-384755de8a6a"}},"connectionId":119,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:11:51.971+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn118","msg":"Connection ended","attr":{"remote":"127.0.0.1:54326","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"08f3663e-5dbe-4ddc-81ad-d9e6238fedba"}},"connectionId":118,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:11:52.360+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn105","msg":"Interrupted operation as its client disconnected","attr":{"opId":33062}} -{"t":{"$date":"2026-03-24T08:11:52.361+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn105","msg":"Connection ended","attr":{"remote":"127.0.0.1:54190","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2213c522-1514-4625-a010-2d278a460da1"}},"connectionId":105,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:11:52.366+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn108","msg":"Interrupted operation as its client disconnected","attr":{"opId":33070}} -{"t":{"$date":"2026-03-24T08:11:52.366+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn108","msg":"Connection ended","attr":{"remote":"127.0.0.1:54224","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"99d48a2d-212c-47a4-94e2-256d206b2189"}},"connectionId":108,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:11:52.458+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn111","msg":"Interrupted operation as its client disconnected","attr":{"opId":33075}} -{"t":{"$date":"2026-03-24T08:11:52.458+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn111","msg":"Connection ended","attr":{"remote":"127.0.0.1:54258","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"b8d34530-f5d8-4aba-8fec-7aae9b78a9c7"}},"connectionId":111,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:11:52.462+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn114","msg":"Interrupted operation as its client disconnected","attr":{"opId":33081}} -{"t":{"$date":"2026-03-24T08:11:52.463+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn114","msg":"Connection ended","attr":{"remote":"127.0.0.1:54288","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6c59e4fc-96de-4931-a0c0-4b879447ec5e"}},"connectionId":114,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:11:52.469+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn117","msg":"Interrupted operation as its client disconnected","attr":{"opId":33088}} -{"t":{"$date":"2026-03-24T08:11:52.469+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn117","msg":"Connection ended","attr":{"remote":"127.0.0.1:54322","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"96931fb2-9b41-4834-aa78-ce966d0f3b6a"}},"connectionId":117,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:12:06.675+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339926,"ts_usec":675729,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 57, snapshot max: 57 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:13:06.684+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774339986,"ts_usec":684529,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 58, snapshot max: 58 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:13:59.483+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:58960","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"210cbbea-54d0-4639-9cd0-2eb68f969cca"}},"connectionId":120,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:13:59.483+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn120","msg":"client metadata","attr":{"remote":"127.0.0.1:58960","client":"conn120","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.484+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn120","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:58960","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:58964","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6569d043-4f7a-4dee-b6f9-64854cda0d0c"}},"connectionId":121,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:58980","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"749ed81a-930d-46fc-a1c9-7a7605db0521"}},"connectionId":122,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn121","msg":"client metadata","attr":{"remote":"127.0.0.1:58964","client":"conn121","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn121","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:58964","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn122","msg":"client metadata","attr":{"remote":"127.0.0.1:58980","client":"conn122","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.485+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn122","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:58980","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.486+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn122","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:13:59.486+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn121","msg":"Connection ended","attr":{"remote":"127.0.0.1:58964","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6569d043-4f7a-4dee-b6f9-64854cda0d0c"}},"connectionId":121,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:13:59.487+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn122","msg":"Connection ended","attr":{"remote":"127.0.0.1:58980","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"749ed81a-930d-46fc-a1c9-7a7605db0521"}},"connectionId":122,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:13:59.488+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:58990","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"743a0486-3bf7-4c0c-ba31-e9bb2399ecc7"}},"connectionId":123,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:13:59.488+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn123","msg":"client metadata","attr":{"remote":"127.0.0.1:58990","client":"conn123","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.488+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn123","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:58990","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.489+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59006","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6ace3d22-5139-4a41-8747-1c03ae090e46"}},"connectionId":124,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:13:59.489+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59012","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"740427bd-69b4-442c-858c-bc536ea8cfe1"}},"connectionId":125,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.489+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn124","msg":"client metadata","attr":{"remote":"127.0.0.1:59006","client":"conn124","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.490+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn124","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59006","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.490+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn125","msg":"client metadata","attr":{"remote":"127.0.0.1:59012","client":"conn125","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.490+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn125","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59012","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.490+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn125","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:13:59.491+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn125","msg":"Connection ended","attr":{"remote":"127.0.0.1:59012","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"740427bd-69b4-442c-858c-bc536ea8cfe1"}},"connectionId":125,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:13:59.492+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn124","msg":"Connection ended","attr":{"remote":"127.0.0.1:59006","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"6ace3d22-5139-4a41-8747-1c03ae090e46"}},"connectionId":124,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:13:59.617+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59026","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ca9546d3-4f51-4deb-ba96-f3fb46c95880"}},"connectionId":126,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:13:59.617+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn126","msg":"client metadata","attr":{"remote":"127.0.0.1:59026","client":"conn126","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.617+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn126","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59026","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.618+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59040","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"388f40b7-b081-4859-a286-6ed3d377b6d3"}},"connectionId":127,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.618+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a1d4cf46-07b4-4a17-8145-ec25a0bfd3ca"}},"connectionId":128,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:13:59.619+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn127","msg":"client metadata","attr":{"remote":"127.0.0.1:59040","client":"conn127","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.619+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn127","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59040","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.619+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn128","msg":"client metadata","attr":{"remote":"127.0.0.1:59042","client":"conn128","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.619+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn128","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59042","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.619+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn128","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:13:59.620+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn127","msg":"Connection ended","attr":{"remote":"127.0.0.1:59040","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"388f40b7-b081-4859-a286-6ed3d377b6d3"}},"connectionId":127,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.620+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn128","msg":"Connection ended","attr":{"remote":"127.0.0.1:59042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a1d4cf46-07b4-4a17-8145-ec25a0bfd3ca"}},"connectionId":128,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:13:59.622+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3a312557-9f5f-495b-ae64-14fae4c97e10"}},"connectionId":129,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.622+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn129","msg":"client metadata","attr":{"remote":"127.0.0.1:59052","client":"conn129","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.622+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn129","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59052","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.623+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59058","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"804da97e-a92b-4a63-a33a-34dfd63695c6"}},"connectionId":130,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:13:59.624+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59074","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"41dfe1ec-001d-43b9-91e0-c84c3388f144"}},"connectionId":131,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:13:59.625+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn130","msg":"client metadata","attr":{"remote":"127.0.0.1:59058","client":"conn130","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.625+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn130","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59058","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.625+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn131","msg":"client metadata","attr":{"remote":"127.0.0.1:59074","client":"conn131","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.625+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn131","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59074","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.626+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn130","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:13:59.626+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn131","msg":"Connection ended","attr":{"remote":"127.0.0.1:59074","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"41dfe1ec-001d-43b9-91e0-c84c3388f144"}},"connectionId":131,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:13:59.627+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn130","msg":"Connection ended","attr":{"remote":"127.0.0.1:59058","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"804da97e-a92b-4a63-a33a-34dfd63695c6"}},"connectionId":130,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.628+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59080","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"32959415-05d6-4d68-8d70-a9e41434e4af"}},"connectionId":132,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:13:59.628+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn132","msg":"client metadata","attr":{"remote":"127.0.0.1:59080","client":"conn132","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.628+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn132","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59080","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.629+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59086","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"703525ff-8a6b-4f22-928f-847f8c24fa85"}},"connectionId":133,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:59102","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f0f971f8-d06f-4261-9e3c-ed597642bf7b"}},"connectionId":134,"connectionCount":9}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn133","msg":"client metadata","attr":{"remote":"127.0.0.1:59086","client":"conn133","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn134","msg":"client metadata","attr":{"remote":"127.0.0.1:59102","client":"conn134","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn134","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59102","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn133","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:59086","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:13:59.630+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn133","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:13:59.631+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn134","msg":"Connection ended","attr":{"remote":"127.0.0.1:59102","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f0f971f8-d06f-4261-9e3c-ed597642bf7b"}},"connectionId":134,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:13:59.631+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn133","msg":"Connection ended","attr":{"remote":"127.0.0.1:59086","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"703525ff-8a6b-4f22-928f-847f8c24fa85"}},"connectionId":133,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:13:59.985+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn120","msg":"Interrupted operation as its client disconnected","attr":{"opId":34692}} -{"t":{"$date":"2026-03-24T08:13:59.986+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn120","msg":"Connection ended","attr":{"remote":"127.0.0.1:58960","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"210cbbea-54d0-4639-9cd0-2eb68f969cca"}},"connectionId":120,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:13:59.990+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn123","msg":"Interrupted operation as its client disconnected","attr":{"opId":34698}} -{"t":{"$date":"2026-03-24T08:13:59.991+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn123","msg":"Connection ended","attr":{"remote":"127.0.0.1:58990","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"743a0486-3bf7-4c0c-ba31-e9bb2399ecc7"}},"connectionId":123,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:14:00.119+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn126","msg":"Interrupted operation as its client disconnected","attr":{"opId":34706}} -{"t":{"$date":"2026-03-24T08:14:00.121+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn126","msg":"Connection ended","attr":{"remote":"127.0.0.1:59026","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ca9546d3-4f51-4deb-ba96-f3fb46c95880"}},"connectionId":126,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:14:00.125+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn129","msg":"Interrupted operation as its client disconnected","attr":{"opId":34712}} -{"t":{"$date":"2026-03-24T08:14:00.126+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn129","msg":"Connection ended","attr":{"remote":"127.0.0.1:59052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3a312557-9f5f-495b-ae64-14fae4c97e10"}},"connectionId":129,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:14:00.130+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn132","msg":"Interrupted operation as its client disconnected","attr":{"opId":34718}} -{"t":{"$date":"2026-03-24T08:14:00.130+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn132","msg":"Connection ended","attr":{"remote":"127.0.0.1:59080","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"32959415-05d6-4d68-8d70-a9e41434e4af"}},"connectionId":132,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:14:06.692+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340046,"ts_usec":692700,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 61, snapshot max: 61 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:15:06.702+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340106,"ts_usec":702730,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 62, snapshot max: 62 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:16:06.709+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340166,"ts_usec":709632,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 63, snapshot max: 63 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:17:06.719+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340226,"ts_usec":718990,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 64, snapshot max: 64 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:18:06.725+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340286,"ts_usec":725834,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 65, snapshot max: 65 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:19:06.733+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340346,"ts_usec":733086,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 66, snapshot max: 66 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:19:56.282+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:46990","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"723486b6-d2e3-43db-97fd-46d5b8ccdef7"}},"connectionId":135,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:56.283+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn135","msg":"client metadata","attr":{"remote":"127.0.0.1:46990","client":"conn135","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.283+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn135","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:46990","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.284+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:46996","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e7c72620-0e08-403b-9c30-50aba83fc95b"}},"connectionId":136,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:56.284+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47006","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d78ee486-3c1b-40ee-82cb-3876648f1f65"}},"connectionId":137,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:56.284+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn136","msg":"client metadata","attr":{"remote":"127.0.0.1:46996","client":"conn136","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.285+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn136","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:46996","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.285+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn137","msg":"client metadata","attr":{"remote":"127.0.0.1:47006","client":"conn137","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.285+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn137","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47006","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.285+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn136","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:19:56.286+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn137","msg":"Connection ended","attr":{"remote":"127.0.0.1:47006","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d78ee486-3c1b-40ee-82cb-3876648f1f65"}},"connectionId":137,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:56.287+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn136","msg":"Connection ended","attr":{"remote":"127.0.0.1:46996","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e7c72620-0e08-403b-9c30-50aba83fc95b"}},"connectionId":136,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:56.289+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47014","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e6f9b11c-82ea-4ae1-9c59-8f5bb6eef648"}},"connectionId":138,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:56.290+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn138","msg":"client metadata","attr":{"remote":"127.0.0.1:47014","client":"conn138","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.290+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn138","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47014","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.291+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47030","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0d316fea-8803-4e94-b56a-435900def4b5"}},"connectionId":139,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:56.291+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn139","msg":"client metadata","attr":{"remote":"127.0.0.1:47030","client":"conn139","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.291+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn139","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47030","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.291+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e4d0d315-9bac-43ae-98cb-360ed9e4d698"}},"connectionId":140,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:56.292+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn140","msg":"client metadata","attr":{"remote":"127.0.0.1:47042","client":"conn140","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.292+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn140","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47042","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.292+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn139","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:19:56.294+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn140","msg":"Connection ended","attr":{"remote":"127.0.0.1:47042","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e4d0d315-9bac-43ae-98cb-360ed9e4d698"}},"connectionId":140,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:56.294+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn139","msg":"Connection ended","attr":{"remote":"127.0.0.1:47030","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0d316fea-8803-4e94-b56a-435900def4b5"}},"connectionId":139,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:56.298+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"dfe2d96b-1d32-4375-8c7d-aea2ce135ec2"}},"connectionId":141,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:56.299+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn141","msg":"client metadata","attr":{"remote":"127.0.0.1:47052","client":"conn141","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.299+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn141","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47052","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.299+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47054","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a81cb917-3ddc-42ef-944b-9ae1bb39602e"}},"connectionId":142,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:56.300+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47064","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"63e55a3a-2243-46c5-823c-f22c2905c75c"}},"connectionId":143,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:56.300+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn142","msg":"client metadata","attr":{"remote":"127.0.0.1:47054","client":"conn142","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.300+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn142","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47054","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.300+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn143","msg":"client metadata","attr":{"remote":"127.0.0.1:47064","client":"conn143","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.301+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn143","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47064","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:56.301+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn142","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:19:56.302+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn142","msg":"Connection ended","attr":{"remote":"127.0.0.1:47054","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"a81cb917-3ddc-42ef-944b-9ae1bb39602e"}},"connectionId":142,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:56.303+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn143","msg":"Connection ended","attr":{"remote":"127.0.0.1:47064","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"63e55a3a-2243-46c5-823c-f22c2905c75c"}},"connectionId":143,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:56.785+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn135","msg":"Interrupted operation as its client disconnected","attr":{"opId":39190}} -{"t":{"$date":"2026-03-24T08:19:56.785+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn135","msg":"Connection ended","attr":{"remote":"127.0.0.1:46990","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"723486b6-d2e3-43db-97fd-46d5b8ccdef7"}},"connectionId":135,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:56.792+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn138","msg":"Interrupted operation as its client disconnected","attr":{"opId":39197}} -{"t":{"$date":"2026-03-24T08:19:56.792+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn138","msg":"Connection ended","attr":{"remote":"127.0.0.1:47014","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e6f9b11c-82ea-4ae1-9c59-8f5bb6eef648"}},"connectionId":138,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:56.801+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn141","msg":"Interrupted operation as its client disconnected","attr":{"opId":39204}} -{"t":{"$date":"2026-03-24T08:19:56.802+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn141","msg":"Connection ended","attr":{"remote":"127.0.0.1:47052","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"dfe2d96b-1d32-4375-8c7d-aea2ce135ec2"}},"connectionId":141,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:19:59.141+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47074","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d3991592-2f53-4297-8faf-39521809e96f"}},"connectionId":144,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:59.142+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn144","msg":"client metadata","attr":{"remote":"127.0.0.1:47074","client":"conn144","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.142+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn144","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47074","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47088","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9f41760e-70af-4bd1-bbfd-edb732796578"}},"connectionId":145,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47090","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9189f172-2ad0-43ad-83b2-f17ce385f111"}},"connectionId":146,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn145","msg":"client metadata","attr":{"remote":"127.0.0.1:47088","client":"conn145","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn145","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47088","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn146","msg":"client metadata","attr":{"remote":"127.0.0.1:47090","client":"conn146","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.143+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn146","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47090","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.144+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn146","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:19:59.145+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn145","msg":"Connection ended","attr":{"remote":"127.0.0.1:47088","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9f41760e-70af-4bd1-bbfd-edb732796578"}},"connectionId":145,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:59.145+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn146","msg":"Connection ended","attr":{"remote":"127.0.0.1:47090","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"9189f172-2ad0-43ad-83b2-f17ce385f111"}},"connectionId":146,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:59.146+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47094","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3c5afaa5-c4cd-4c69-9e08-9e79fd669d94"}},"connectionId":147,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:59.147+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn147","msg":"client metadata","attr":{"remote":"127.0.0.1:47094","client":"conn147","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.147+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn147","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47094","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.147+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47102","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0dbf91bb-0968-4cf1-92c3-5798bde0066a"}},"connectionId":148,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.147+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47112","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"4d86b448-0259-44e6-b99f-0f1ab7b4bada"}},"connectionId":149,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.148+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn148","msg":"client metadata","attr":{"remote":"127.0.0.1:47102","client":"conn148","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.148+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn148","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47102","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.148+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn149","msg":"client metadata","attr":{"remote":"127.0.0.1:47112","client":"conn149","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.148+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn149","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47112","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.148+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn148","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:19:59.149+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn149","msg":"Connection ended","attr":{"remote":"127.0.0.1:47112","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"4d86b448-0259-44e6-b99f-0f1ab7b4bada"}},"connectionId":149,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.149+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn148","msg":"Connection ended","attr":{"remote":"127.0.0.1:47102","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0dbf91bb-0968-4cf1-92c3-5798bde0066a"}},"connectionId":148,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:59.267+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47126","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ea64dd81-2dc1-4339-87b7-aa84687d0541"}},"connectionId":150,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.268+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn150","msg":"client metadata","attr":{"remote":"127.0.0.1:47126","client":"conn150","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.268+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn150","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47126","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.270+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47132","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f2744179-6579-496f-bf33-097305bdaf95"}},"connectionId":151,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.270+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47136","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ab0c2564-f4e8-4ac7-b1dc-54f7483d385c"}},"connectionId":152,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:59.270+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn151","msg":"client metadata","attr":{"remote":"127.0.0.1:47132","client":"conn151","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.270+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn152","msg":"client metadata","attr":{"remote":"127.0.0.1:47136","client":"conn152","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.271+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn152","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47136","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.271+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn151","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47132","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.271+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn151","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:19:59.272+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn152","msg":"Connection ended","attr":{"remote":"127.0.0.1:47136","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ab0c2564-f4e8-4ac7-b1dc-54f7483d385c"}},"connectionId":152,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.273+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn151","msg":"Connection ended","attr":{"remote":"127.0.0.1:47132","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"f2744179-6579-496f-bf33-097305bdaf95"}},"connectionId":151,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.274+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47140","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7d3379c5-11ce-4e81-a5a4-913acf571532"}},"connectionId":153,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.275+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn153","msg":"client metadata","attr":{"remote":"127.0.0.1:47140","client":"conn153","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.275+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn153","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47140","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.276+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47144","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"da5c35e4-e1ff-42d9-b5ce-d7b76976384f"}},"connectionId":154,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:59.277+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn154","msg":"client metadata","attr":{"remote":"127.0.0.1:47144","client":"conn154","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.277+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn154","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47144","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.277+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47158","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"73786070-6154-4f00-8c92-6a9716471691"}},"connectionId":155,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:19:59.278+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn155","msg":"client metadata","attr":{"remote":"127.0.0.1:47158","client":"conn155","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.278+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn155","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47158","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.278+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn155","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:19:59.284+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn155","msg":"Connection ended","attr":{"remote":"127.0.0.1:47158","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"73786070-6154-4f00-8c92-6a9716471691"}},"connectionId":155,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:59.285+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn154","msg":"Connection ended","attr":{"remote":"127.0.0.1:47144","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"da5c35e4-e1ff-42d9-b5ce-d7b76976384f"}},"connectionId":154,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.287+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47168","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0e50b185-4dc5-4986-ab2a-90acac45f8d2"}},"connectionId":156,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:59.288+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn156","msg":"client metadata","attr":{"remote":"127.0.0.1:47168","client":"conn156","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.288+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn156","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47168","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.289+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47182","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"50c9975b-e9c9-4c59-b453-bb774e8171d8"}},"connectionId":157,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:19:59.291+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn157","msg":"client metadata","attr":{"remote":"127.0.0.1:47182","client":"conn157","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.292+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn157","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47182","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.292+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn157","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:19:59.293+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47192","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5e6f5b5e-6d7f-4e10-a371-c224ee1ba523"}},"connectionId":158,"connectionCount":9}} -{"t":{"$date":"2026-03-24T08:19:59.295+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn158","msg":"client metadata","attr":{"remote":"127.0.0.1:47192","client":"conn158","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.295+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn157","msg":"Connection ended","attr":{"remote":"127.0.0.1:47182","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"50c9975b-e9c9-4c59-b453-bb774e8171d8"}},"connectionId":157,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:19:59.296+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn158","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47192","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:19:59.297+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn158","msg":"Connection ended","attr":{"remote":"127.0.0.1:47192","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5e6f5b5e-6d7f-4e10-a371-c224ee1ba523"}},"connectionId":158,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:19:59.644+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn144","msg":"Interrupted operation as its client disconnected","attr":{"opId":39244}} -{"t":{"$date":"2026-03-24T08:19:59.645+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn144","msg":"Connection ended","attr":{"remote":"127.0.0.1:47074","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"d3991592-2f53-4297-8faf-39521809e96f"}},"connectionId":144,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:19:59.648+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn147","msg":"Interrupted operation as its client disconnected","attr":{"opId":39250}} -{"t":{"$date":"2026-03-24T08:19:59.650+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn147","msg":"Connection ended","attr":{"remote":"127.0.0.1:47094","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"3c5afaa5-c4cd-4c69-9e08-9e79fd669d94"}},"connectionId":147,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:19:59.770+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn150","msg":"Interrupted operation as its client disconnected","attr":{"opId":39257}} -{"t":{"$date":"2026-03-24T08:19:59.771+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn150","msg":"Connection ended","attr":{"remote":"127.0.0.1:47126","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ea64dd81-2dc1-4339-87b7-aa84687d0541"}},"connectionId":150,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:19:59.777+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn153","msg":"Interrupted operation as its client disconnected","attr":{"opId":39263}} -{"t":{"$date":"2026-03-24T08:19:59.778+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn153","msg":"Connection ended","attr":{"remote":"127.0.0.1:47140","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7d3379c5-11ce-4e81-a5a4-913acf571532"}},"connectionId":153,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:19:59.791+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn156","msg":"Interrupted operation as its client disconnected","attr":{"opId":39269}} -{"t":{"$date":"2026-03-24T08:19:59.792+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn156","msg":"Connection ended","attr":{"remote":"127.0.0.1:47168","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"0e50b185-4dc5-4986-ab2a-90acac45f8d2"}},"connectionId":156,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:20:00.385+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47198","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"acd8e328-aef9-4aab-ace6-2a1757654a0e"}},"connectionId":159,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:20:00.386+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn159","msg":"client metadata","attr":{"remote":"127.0.0.1:47198","client":"conn159","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.386+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn159","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47198","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.386+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47208","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"56bfd3ad-d9a9-4375-8c08-b40b0bee0b6d"}},"connectionId":160,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:20:00.387+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47218","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1cdca4fa-9065-4771-98dc-33b34c33caff"}},"connectionId":161,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:00.387+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn160","msg":"client metadata","attr":{"remote":"127.0.0.1:47208","client":"conn160","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.387+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn160","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47208","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.387+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn161","msg":"client metadata","attr":{"remote":"127.0.0.1:47218","client":"conn161","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.387+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn161","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47218","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.388+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn160","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:20:00.388+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn161","msg":"Connection ended","attr":{"remote":"127.0.0.1:47218","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"1cdca4fa-9065-4771-98dc-33b34c33caff"}},"connectionId":161,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:20:00.389+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn160","msg":"Connection ended","attr":{"remote":"127.0.0.1:47208","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"56bfd3ad-d9a9-4375-8c08-b40b0bee0b6d"}},"connectionId":160,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:20:00.390+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47224","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"51c74cb6-5381-4eb5-9db9-11e287ab7ae3"}},"connectionId":162,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:20:00.390+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn162","msg":"client metadata","attr":{"remote":"127.0.0.1:47224","client":"conn162","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.390+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn162","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47224","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.391+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47238","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2ba44f77-3b0e-4810-a66d-ef5cd6fbf5fc"}},"connectionId":163,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:00.391+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn163","msg":"client metadata","attr":{"remote":"127.0.0.1:47238","client":"conn163","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.391+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47244","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5390d4f2-ab9f-4c87-8f4e-b30af880017d"}},"connectionId":164,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.392+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn163","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47238","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.392+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn164","msg":"client metadata","attr":{"remote":"127.0.0.1:47244","client":"conn164","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.392+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn164","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47244","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.392+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn163","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:20:00.393+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn164","msg":"Connection ended","attr":{"remote":"127.0.0.1:47244","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5390d4f2-ab9f-4c87-8f4e-b30af880017d"}},"connectionId":164,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:00.393+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn163","msg":"Connection ended","attr":{"remote":"127.0.0.1:47238","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"2ba44f77-3b0e-4810-a66d-ef5cd6fbf5fc"}},"connectionId":163,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:20:00.524+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47258","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"503a7582-604e-4e9f-9da4-be138d194395"}},"connectionId":165,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:00.524+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn165","msg":"client metadata","attr":{"remote":"127.0.0.1:47258","client":"conn165","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.525+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn165","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47258","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.525+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47268","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e33e9aff-956d-485e-8d64-02856bfa4bb0"}},"connectionId":166,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47282","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ee041390-d053-426d-a5f7-deda2f74e0c2"}},"connectionId":167,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn166","msg":"client metadata","attr":{"remote":"127.0.0.1:47268","client":"conn166","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn166","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47268","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn167","msg":"client metadata","attr":{"remote":"127.0.0.1:47282","client":"conn167","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn167","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47282","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.526+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn167","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:20:00.527+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn167","msg":"Connection ended","attr":{"remote":"127.0.0.1:47282","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"ee041390-d053-426d-a5f7-deda2f74e0c2"}},"connectionId":167,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.527+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn166","msg":"Connection ended","attr":{"remote":"127.0.0.1:47268","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"e33e9aff-956d-485e-8d64-02856bfa4bb0"}},"connectionId":166,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:00.529+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47290","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"956d1b17-5947-475c-a759-58f427176be1"}},"connectionId":168,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.529+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn168","msg":"client metadata","attr":{"remote":"127.0.0.1:47290","client":"conn168","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.529+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn168","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47290","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.530+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47302","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"02f11788-48c2-463a-a3cf-5d1938765ccc"}},"connectionId":169,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:20:00.532+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn169","msg":"client metadata","attr":{"remote":"127.0.0.1:47302","client":"conn169","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.532+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn169","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47302","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.533+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47316","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7f5259bb-ed84-4988-a421-470eb5eea38b"}},"connectionId":170,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:20:00.533+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn169","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:20:00.533+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn170","msg":"client metadata","attr":{"remote":"127.0.0.1:47316","client":"conn170","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.533+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn170","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47316","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.534+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn170","msg":"Connection ended","attr":{"remote":"127.0.0.1:47316","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7f5259bb-ed84-4988-a421-470eb5eea38b"}},"connectionId":170,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:20:00.534+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn169","msg":"Connection ended","attr":{"remote":"127.0.0.1:47302","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"02f11788-48c2-463a-a3cf-5d1938765ccc"}},"connectionId":169,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.536+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47318","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"21e5dc9f-724a-4e97-a945-66f6a253b551"}},"connectionId":171,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:20:00.536+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn171","msg":"client metadata","attr":{"remote":"127.0.0.1:47318","client":"conn171","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.536+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn171","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47318","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.538+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47334","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"553fc66e-13cd-4293-98b0-eadffde3ebe9"}},"connectionId":172,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:20:00.538+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:47342","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"120fbbe0-7d11-4576-8bb6-8d889968d8f9"}},"connectionId":173,"connectionCount":9}} -{"t":{"$date":"2026-03-24T08:20:00.538+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn172","msg":"client metadata","attr":{"remote":"127.0.0.1:47334","client":"conn172","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.538+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn172","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47334","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.538+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn173","msg":"client metadata","attr":{"remote":"127.0.0.1:47342","client":"conn173","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.539+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn173","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:47342","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:20:00.539+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn173","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":0}} -{"t":{"$date":"2026-03-24T08:20:00.542+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn173","msg":"Connection ended","attr":{"remote":"127.0.0.1:47342","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"120fbbe0-7d11-4576-8bb6-8d889968d8f9"}},"connectionId":173,"connectionCount":8}} -{"t":{"$date":"2026-03-24T08:20:00.542+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn172","msg":"Connection ended","attr":{"remote":"127.0.0.1:47334","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"553fc66e-13cd-4293-98b0-eadffde3ebe9"}},"connectionId":172,"connectionCount":7}} -{"t":{"$date":"2026-03-24T08:20:00.887+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn159","msg":"Interrupted operation as its client disconnected","attr":{"opId":39288}} -{"t":{"$date":"2026-03-24T08:20:00.889+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn159","msg":"Connection ended","attr":{"remote":"127.0.0.1:47198","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"acd8e328-aef9-4aab-ace6-2a1757654a0e"}},"connectionId":159,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:20:00.892+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn162","msg":"Interrupted operation as its client disconnected","attr":{"opId":39295}} -{"t":{"$date":"2026-03-24T08:20:00.893+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn162","msg":"Connection ended","attr":{"remote":"127.0.0.1:47224","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"51c74cb6-5381-4eb5-9db9-11e287ab7ae3"}},"connectionId":162,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:20:01.026+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn165","msg":"Interrupted operation as its client disconnected","attr":{"opId":39302}} -{"t":{"$date":"2026-03-24T08:20:01.026+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn165","msg":"Connection ended","attr":{"remote":"127.0.0.1:47258","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"503a7582-604e-4e9f-9da4-be138d194395"}},"connectionId":165,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:20:01.032+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn168","msg":"Interrupted operation as its client disconnected","attr":{"opId":39310}} -{"t":{"$date":"2026-03-24T08:20:01.033+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn168","msg":"Connection ended","attr":{"remote":"127.0.0.1:47290","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"956d1b17-5947-475c-a759-58f427176be1"}},"connectionId":168,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:20:01.037+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn171","msg":"Interrupted operation as its client disconnected","attr":{"opId":39315}} -{"t":{"$date":"2026-03-24T08:20:01.038+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn171","msg":"Connection ended","attr":{"remote":"127.0.0.1:47318","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"21e5dc9f-724a-4e97-a945-66f6a253b551"}},"connectionId":171,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:20:06.744+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340406,"ts_usec":744093,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 70, snapshot max: 70 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:21:06.754+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340466,"ts_usec":754242,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 71, snapshot max: 71 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:21:53.087+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40928","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"726c891b-735a-4e70-9118-004747cd044d"}},"connectionId":174,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:21:53.088+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn174","msg":"client metadata","attr":{"remote":"127.0.0.1:40928","client":"conn174","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.088+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn174","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40928","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.089+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40942","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5381051f-24d3-45f2-8ac3-b9974af1b2d8"}},"connectionId":175,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:21:53.089+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40948","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"74f18204-f6ed-4402-9596-7ac8d0da67cb"}},"connectionId":176,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:21:53.089+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn175","msg":"client metadata","attr":{"remote":"127.0.0.1:40942","client":"conn175","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.089+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn175","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40942","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.090+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn176","msg":"client metadata","attr":{"remote":"127.0.0.1:40948","client":"conn176","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.090+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn176","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40948","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.091+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn176","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":1}} -{"t":{"$date":"2026-03-24T08:21:53.092+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn175","msg":"Connection ended","attr":{"remote":"127.0.0.1:40942","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5381051f-24d3-45f2-8ac3-b9974af1b2d8"}},"connectionId":175,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:21:53.092+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn176","msg":"Connection ended","attr":{"remote":"127.0.0.1:40948","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"74f18204-f6ed-4402-9596-7ac8d0da67cb"}},"connectionId":176,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:21:53.094+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40954","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30fdc151-79b6-4e56-8cb2-b5817b4fad60"}},"connectionId":177,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:21:53.094+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn177","msg":"client metadata","attr":{"remote":"127.0.0.1:40954","client":"conn177","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.094+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn177","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40954","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.095+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40962","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7129b1fd-faea-4e42-be83-5c7dc0dad6f6"}},"connectionId":178,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:21:53.095+00:00"},"s":"I", "c":"NETWORK", "id":22943, "ctx":"listener","msg":"Connection accepted","attr":{"remote":"127.0.0.1:40968","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5da3c2ae-09c3-4c33-94c3-56a39ad83a1b"}},"connectionId":179,"connectionCount":6}} -{"t":{"$date":"2026-03-24T08:21:53.096+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn178","msg":"client metadata","attr":{"remote":"127.0.0.1:40962","client":"conn178","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.096+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn178","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40962","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.096+00:00"},"s":"I", "c":"NETWORK", "id":51800, "ctx":"conn179","msg":"client metadata","attr":{"remote":"127.0.0.1:40968","client":"conn179","negotiatedCompressors":[],"doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.096+00:00"},"s":"I", "c":"ACCESS", "id":10483900,"ctx":"conn179","msg":"Connection not authenticating","attr":{"client":"127.0.0.1:40968","doc":{"driver":{"name":"PyMongo|c","version":"4.16.0"},"os":{"type":"Linux","name":"Linux","architecture":"x86_64","version":"6.8.0-1044-azure"},"platform":"CPython 3.12.1.final.0","env":{"container":{"runtime":"docker"}}}}} -{"t":{"$date":"2026-03-24T08:21:53.098+00:00"},"s":"I", "c":"NETWORK", "id":6788700, "ctx":"conn179","msg":"Received first command on ingress connection since session start or auth handshake","attr":{"elapsedMillis":2}} -{"t":{"$date":"2026-03-24T08:21:53.099+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn178","msg":"Connection ended","attr":{"remote":"127.0.0.1:40962","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"7129b1fd-faea-4e42-be83-5c7dc0dad6f6"}},"connectionId":178,"connectionCount":5}} -{"t":{"$date":"2026-03-24T08:21:53.100+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn179","msg":"Connection ended","attr":{"remote":"127.0.0.1:40968","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"5da3c2ae-09c3-4c33-94c3-56a39ad83a1b"}},"connectionId":179,"connectionCount":4}} -{"t":{"$date":"2026-03-24T08:21:53.589+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn174","msg":"Interrupted operation as its client disconnected","attr":{"opId":40729}} -{"t":{"$date":"2026-03-24T08:21:53.590+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn174","msg":"Connection ended","attr":{"remote":"127.0.0.1:40928","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"726c891b-735a-4e70-9118-004747cd044d"}},"connectionId":174,"connectionCount":3}} -{"t":{"$date":"2026-03-24T08:21:53.596+00:00"},"s":"I", "c":"-", "id":20883, "ctx":"conn177","msg":"Interrupted operation as its client disconnected","attr":{"opId":40735}} -{"t":{"$date":"2026-03-24T08:21:53.596+00:00"},"s":"I", "c":"NETWORK", "id":22944, "ctx":"conn177","msg":"Connection ended","attr":{"remote":"127.0.0.1:40954","isLoadBalanced":false,"uuid":{"uuid":{"$uuid":"30fdc151-79b6-4e56-8cb2-b5817b4fad60"}},"connectionId":177,"connectionCount":2}} -{"t":{"$date":"2026-03-24T08:22:06.760+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340526,"ts_usec":760838,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 72, snapshot max: 72 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:23:06.769+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340586,"ts_usec":769616,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 73, snapshot max: 73 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:24:06.781+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340646,"ts_usec":781081,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 74, snapshot max: 74 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:25:06.797+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340706,"ts_usec":797155,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 75, snapshot max: 75 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:26:06.803+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340766,"ts_usec":803690,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 76, snapshot max: 76 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:27:06.813+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340826,"ts_usec":813784,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 77, snapshot max: 77 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:28:06.827+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340886,"ts_usec":826957,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 78, snapshot max: 78 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:28:14.932+00:00"},"s":"W", "c":"WT", "id":22430, "ctx":"thread207","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340894,"ts_usec":930071,"thread":"58691:0x789dadfa16c0","session_name":"sweep-server","category":"WT_VERB_DEFAULT","category_id":9,"verbose_level":"WARNING","verbose_level_id":-2,"msg":"Session 13 (@: 0x0x583932da8cf0 name: EMPTY) did not run a sweep for 60 minutes."}}} -{"t":{"$date":"2026-03-24T08:29:06.841+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774340946,"ts_usec":841107,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 79, snapshot max: 79 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:30:06.850+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341006,"ts_usec":850198,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 80, snapshot max: 80 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:31:06.912+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341066,"ts_usec":912143,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 81, snapshot max: 81 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:32:06.920+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341126,"ts_usec":920007,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 82, snapshot max: 82 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:33:06.933+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341186,"ts_usec":933329,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 83, snapshot max: 83 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:34:06.945+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341246,"ts_usec":945466,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 84, snapshot max: 84 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:35:06.970+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341306,"ts_usec":970111,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 85, snapshot max: 85 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:36:07.056+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341367,"ts_usec":56647,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 86, snapshot max: 86 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:37:07.078+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341427,"ts_usec":78898,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 87, snapshot max: 87 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:38:05.247+00:00"},"s":"I", "c":"COMMAND", "id":51803, "ctx":"LogicalSessionCacheReap","msg":"Slow query","attr":{"type":"command","ns":"config.transactions","command":{"find":"transactions","filter":{"lastWriteDate":{"$lt":{"$date":"2026-03-24T08:08:05.062Z"}}},"projection":{"_id":1},"sort":{"_id":1},"readConcern":{},"$db":"config"},"planSummary":"EOF","planningTimeMicros":92735,"keysExamined":0,"docsExamined":0,"nBatches":1,"cursorExhausted":true,"numYields":0,"nreturned":0,"queryFramework":"classic","reslen":108,"locks":{"FeatureCompatibilityVersion":{"acquireCount":{"r":1}},"Global":{"acquireCount":{"r":1}}},"readConcern":{"provenance":"implicitDefault"},"storage":{},"cpuNanos":2846924,"protocol":"op_msg","durationMillis":113}} -{"t":{"$date":"2026-03-24T08:38:07.165+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341487,"ts_usec":165028,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 88, snapshot max: 88 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:39:07.249+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341547,"ts_usec":241236,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 89, snapshot max: 89 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:40:07.334+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341607,"ts_usec":334774,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 90, snapshot max: 90 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:41:07.420+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341667,"ts_usec":420512,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 91, snapshot max: 91 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:42:07.441+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341727,"ts_usec":441303,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 92, snapshot max: 92 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:43:07.460+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341787,"ts_usec":460714,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 93, snapshot max: 93 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:44:07.467+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341847,"ts_usec":467144,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 94, snapshot max: 94 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:45:07.474+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341907,"ts_usec":474731,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 95, snapshot max: 95 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:46:07.481+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774341967,"ts_usec":480988,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 96, snapshot max: 96 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:47:07.489+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342027,"ts_usec":489896,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 97, snapshot max: 97 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:48:07.497+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342087,"ts_usec":497573,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 98, snapshot max: 98 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:49:07.507+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342147,"ts_usec":507567,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 99, snapshot max: 99 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:50:07.514+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342207,"ts_usec":514401,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 100, snapshot max: 100 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:51:07.533+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342267,"ts_usec":533007,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 101, snapshot max: 101 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:52:07.540+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342327,"ts_usec":540692,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 102, snapshot max: 102 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:53:07.549+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342387,"ts_usec":549159,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 103, snapshot max: 103 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:54:07.556+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342447,"ts_usec":556165,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 104, snapshot max: 104 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:55:07.564+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342507,"ts_usec":564573,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 105, snapshot max: 105 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:56:07.571+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342567,"ts_usec":571719,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 106, snapshot max: 106 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:57:07.580+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342627,"ts_usec":580113,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 107, snapshot max: 107 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:58:07.588+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342687,"ts_usec":588005,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 108, snapshot max: 108 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T08:59:07.595+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342747,"ts_usec":595108,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 109, snapshot max: 109 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:00:07.602+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342807,"ts_usec":602933,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 110, snapshot max: 110 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:01:07.693+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342867,"ts_usec":693837,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 111, snapshot max: 111 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:02:07.709+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342927,"ts_usec":709143,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 112, snapshot max: 112 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:03:07.740+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774342987,"ts_usec":740140,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 113, snapshot max: 113 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:04:07.749+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343047,"ts_usec":749627,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 114, snapshot max: 114 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:05:07.757+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343107,"ts_usec":757663,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 115, snapshot max: 115 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:06:07.763+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343167,"ts_usec":763805,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 116, snapshot max: 116 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:07:07.771+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343227,"ts_usec":771071,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 117, snapshot max: 117 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:08:07.778+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343287,"ts_usec":778165,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 118, snapshot max: 118 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:09:07.785+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343347,"ts_usec":785852,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 119, snapshot max: 119 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:10:07.793+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343407,"ts_usec":793169,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 120, snapshot max: 120 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:11:07.804+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343467,"ts_usec":804328,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 121, snapshot max: 121 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:12:07.814+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343527,"ts_usec":814027,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 122, snapshot max: 122 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:13:07.822+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343587,"ts_usec":822189,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 123, snapshot max: 123 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:14:07.830+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343647,"ts_usec":829997,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 124, snapshot max: 124 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:15:07.837+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343707,"ts_usec":837712,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 125, snapshot max: 125 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:16:07.845+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343767,"ts_usec":845051,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 126, snapshot max: 126 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:17:07.852+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343827,"ts_usec":852767,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 127, snapshot max: 127 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:18:07.859+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343887,"ts_usec":859625,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 128, snapshot max: 128 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:19:07.867+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774343947,"ts_usec":867378,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 129, snapshot max: 129 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:20:07.874+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344007,"ts_usec":874236,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 130, snapshot max: 130 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:21:07.882+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344067,"ts_usec":882261,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 131, snapshot max: 131 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:22:07.889+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344127,"ts_usec":889310,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 132, snapshot max: 132 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:23:07.897+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344187,"ts_usec":897956,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 133, snapshot max: 133 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:24:07.905+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344247,"ts_usec":905042,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 134, snapshot max: 134 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:25:07.912+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344307,"ts_usec":912926,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 135, snapshot max: 135 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:26:07.920+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344367,"ts_usec":920610,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 136, snapshot max: 136 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:27:07.928+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344427,"ts_usec":928654,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 137, snapshot max: 137 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:28:07.936+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344487,"ts_usec":936021,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 138, snapshot max: 138 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:29:07.943+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344547,"ts_usec":943482,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 139, snapshot max: 139 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:30:07.951+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344607,"ts_usec":951291,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 140, snapshot max: 140 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:31:07.983+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344667,"ts_usec":983560,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 141, snapshot max: 141 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:32:07.996+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344727,"ts_usec":996111,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 142, snapshot max: 142 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:33:08.008+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344788,"ts_usec":8107,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 143, snapshot max: 143 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:34:08.018+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344848,"ts_usec":18466,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 144, snapshot max: 144 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:35:08.027+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344908,"ts_usec":27598,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 145, snapshot max: 145 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:36:08.035+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774344968,"ts_usec":35582,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 146, snapshot max: 146 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:37:08.043+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345028,"ts_usec":43890,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 147, snapshot max: 147 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:38:08.052+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345088,"ts_usec":52029,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 148, snapshot max: 148 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:39:08.063+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345148,"ts_usec":63124,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 149, snapshot max: 149 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:40:08.071+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345208,"ts_usec":71761,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 150, snapshot max: 150 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:41:08.079+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345268,"ts_usec":79745,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 151, snapshot max: 151 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} -{"t":{"$date":"2026-03-24T09:42:08.086+00:00"},"s":"I", "c":"WTCHKPT", "id":22430, "ctx":"Checkpointer","msg":"WiredTiger message","attr":{"message":{"ts_sec":1774345328,"ts_usec":86692,"thread":"58691:0x789dac79e6c0","session_name":"WT_SESSION.checkpoint","category":"WT_VERB_CHECKPOINT_PROGRESS","category_id":6,"verbose_level":"DEBUG_1","verbose_level_id":1,"msg":"saving checkpoint snapshot min: 152, snapshot max: 152 snapshot count: 0, oldest timestamp: (0, 0) , meta checkpoint timestamp: (0, 0) base write gen: 133"}}} diff --git a/Website/templates/base.html b/Website/templates/base.html index e122a4c..8c889cb 100644 --- a/Website/templates/base.html +++ b/Website/templates/base.html @@ -380,6 +380,7 @@ Dashboard Userverwaltung Lizenzverwaltung + Lizenz-Key Verwaltung Rechnungsverwaltung Admin-Chat Support-Center diff --git a/Website/templates/lizenz-managment.html b/Website/templates/lizenz-managment.html new file mode 100644 index 0000000..40d6d2b --- /dev/null +++ b/Website/templates/lizenz-managment.html @@ -0,0 +1,268 @@ +{% extends "base.html" %} + +{% block title %}Admin | Lizenz-Key Verwaltung{% endblock %} + +{% block head %} +{{ super() }} + +{% endblock %} + +{% block content %} +
+

Lizenz-Key Verwaltung

+

Generieren, zuweisen und sichern Sie Lizenz-Keys im gleichen Stil wie der restliche Admin-Bereich.

+
+ +
+ + +
+

Alle Keys

+
+ + + + + + + + + + + + + {% for item in keys %} + + + + + + + + + {% else %} + + + + {% endfor %} + +
User IDLizenz-KeyBenutzerHWIDStatusAktion
{{ item.user_id or '-' }}{{ item.license_key }}{{ item.username or '-' }} + {% if item.hwid_uuid %} + {{ item.hwid_uuid }} + {% else %} + - + {% endif %} + + {% if item.username %} + Zugewiesen + {% else %} + Nicht zugewiesen + {% endif %} + + {% if item.user_id %} +
+ +
+ {% else %} + - + {% endif %} +
Keine Lizenz-Keys gefunden.
+
+
+
+ +{% endblock %} \ No newline at end of file diff --git a/Website/verify.py b/Website/verify.py new file mode 100644 index 0000000..09809eb --- /dev/null +++ b/Website/verify.py @@ -0,0 +1,136 @@ +import os +import secrets +from pymongo import MongoClient +from pymongo.errors import PyMongoError +from datetime import datetime + +BASE_DIR = os.path.dirname(os.path.abspath(__file__)) +INVOICE_UPLOAD_DIR = os.path.join(BASE_DIR, "static", "uploads", "invoices") +MONGO_URI = os.environ.get("MONGO_URI", "mongodb://localhost:27017") +MONGO_DB_NAME = os.environ.get("MONGO_DB_NAME", "Invario_Website") +LICENSE_COLLECTION = "licenses" + + +def _get_collection(): + client = MongoClient(MONGO_URI, serverSelectionTimeoutMS=1200) + return client, client[MONGO_DB_NAME][LICENSE_COLLECTION] + + +def _next_user_id(col) -> str: + existing_ids = [] + for item in col.find({}, {"user_id": 1, "_id": 0}): + user_id = str(item.get("user_id", "")).strip() + if user_id.isdigit(): + existing_ids.append(int(user_id)) + next_id = (max(existing_ids) + 1) if existing_ids else 1 + return f"{next_id:04d}" + + +def load_file() -> list: + client = None + try: + client, col = _get_collection() + docs = list(col.find({}, {"_id": 0}).sort("created_at", 1)) + return docs + except PyMongoError: + return [] + finally: + if client: + client.close() + +def check(license_key, hwid_uuid) -> bool: + client = None + try: + client, col = _get_collection() + doc = col.find_one({"license_key": str(license_key)}) + if not doc: + return False + + current_hwid = str(doc.get("hwid_uuid", "")) + if current_hwid == str(hwid_uuid): + return True + + if current_hwid == "": + col.update_one( + {"_id": doc.get("_id")}, + { + "$set": { + "hwid_uuid": str(hwid_uuid), + "updated_at": datetime.utcnow().isoformat(timespec="seconds") + "Z", + } + }, + ) + return True + + return False + except PyMongoError: + return False + finally: + if client: + client.close() + +def register_new_Key(data_stream): + if not isinstance(data_stream, list): + return False + + client = None + try: + client, col = _get_collection() + col.delete_many({}) + prepared = [] + for item in data_stream: + if not isinstance(item, dict): + continue + prepared.append( + { + "user_id": str(item.get("user_id", "")).strip(), + "license_key": str(item.get("license_key", "")).strip(), + "hwid_uuid": str(item.get("hwid_uuid", "")).strip(), + "created_at": item.get("created_at") or datetime.utcnow().isoformat(timespec="seconds") + "Z", + } + ) + if prepared: + col.insert_many(prepared) + return True + except PyMongoError: + return False + finally: + if client: + client.close() + +def new_key() -> str: + generated_key = key_generator() + client = None + try: + client, col = _get_collection() + col.insert_one( + { + "user_id": _next_user_id(col), + "license_key": generated_key, + "hwid_uuid": "", + "created_at": datetime.utcnow().isoformat(timespec="seconds") + "Z", + } + ) + except PyMongoError: + return "" + finally: + if client: + client.close() + + return generated_key + + +def remove_key(user_id: str) -> bool: + client = None + try: + client, col = _get_collection() + result = col.delete_one({"user_id": str(user_id)}) + return result.deleted_count > 0 + except PyMongoError: + return False + finally: + if client: + client.close() + +def key_generator(): + return secrets.token_urlsafe(32) \ No newline at end of file