open-telemetry / opentelemetry-collector-contrib

Contrib repository for the OpenTelemetry Collector
https://opentelemetry.io
Apache License 2.0
2.72k stars 2.16k forks source link

Mongodb Atlas receiver not able to pull logs issue #31978

Open preshit1505 opened 3 months ago

preshit1505 commented 3 months ago

Component(s)

receiver/mongodbatlas

What happened?

Description

I have setup the mongodb atlas receiver for getting the logs but I am not seeing any logs coming into the collector

Steps to Reproduce

Expected Result

Expected to be getting the logs

Actual Result

{"level":"warn","ts":1711471695.0430725,"caller":"mongodbatlasreceiver@v0.88.0/logs.go:259","msg":"Attempted to retrieve audit logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongodb-audit-log.gz"} {"level":"warn","ts":1711471693.930057,"caller":"mongodbatlasreceiver@v0.88.0/logs.go:229","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz"

Collector version

mongodb atlas version 6.0.14

Environment information

No response

OpenTelemetry Collector configuration

config:
  receivers:

    mongodbatlas:
      public_key: ${MONGODB_PUBLIC_KEY}
      private_key: ${MONGODB_PRIVATE_KEY}
      logs:
        enabled: true
        projects:
        - name: bedrock-control-plane-preview
          include_clusters: [kubevlea]
          access_logs:
            enabled: true
            auth_result: true
            poll_interval: 1m
          collect_audit_logs: true
          collect_host_logs: true

 service:
    extensions: [basicauth/metrics, basicauth/logs, health_check]
    pipelines:
      logs:
        receivers: [mongodbatlas]
        processors: [memory_limiter/logs, k8sattributes, batch/logs]
        exporters: [loki]
      logs:
        encoding: json

Log output

{"level":"warn","ts":1711471695.0430725,"caller":"mongodbatlasreceiver@v0.88.0/logs.go:259","msg":"Attempted to retrieve audit logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongodb-audit-log.gz"}
{"level":"warn","ts":1711471693.930057,"caller":"mongodbatlasreceiver@v0.88.0/logs.go:229","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz"

Additional context

Audit logs are already enabled from atlas UI

github-actions[bot] commented 3 months ago

Pinging code owners:

See Adding Labels via Comments if you do not have permissions to add labels yourself.

crobert-1 commented 3 months ago

Potentially related: https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/28851

preshit1505 commented 3 months ago

What could be the solution for this?

preshit1505 commented 3 months ago

Below is something which I saw in the logs as well.

{"level":"error","ts":1711479867.7246354,"logger":"json_decoder","caller":"mongodbatlasreceiver@v0.88.0/log_decoder.go:46","msg":"Failed to parse log entry as JSON","kind":"receiver","name":"mongodbatlas","data_type":"logs","entry":"","stacktrace":"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.decodeJSON\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/log_decoder.go:46\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.decodeLogs\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/log_decoder.go:25\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.(*logsReceiver).getHostLogs\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/logs.go:208\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.(*logsReceiver).collectLogs\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/logs.go:222\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.(*logsReceiver).collectClusterLogs\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/logs.go:157\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.(*logsReceiver).collect\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/logs.go:137\ngithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver.(*logsReceiver).Start.func1\n\tgithub.com/open-telemetry/opentelemetry-collector-contrib/receiver/mongodbatlasreceiver@v0.88.0/logs.go:70

preshit1505 commented 3 months ago

Any suggestions here?

github-actions[bot] commented 1 month ago

This issue has been inactive for 60 days. It will be closed in 60 days if there is no activity. To ping code owners by adding a component label, see Adding Labels via Comments, or if you are unsure of which component this issue relates to, please ping @open-telemetry/collector-contrib-triagers. If this issue is still relevant, please ping the code owners or leave a comment explaining why it is still relevant. Otherwise, please close it.

Pinging code owners:

See Adding Labels via Comments if you do not have permissions to add labels yourself.

preshit1505 commented 4 weeks ago

@crobert-1 ??

crobert-1 commented 4 weeks ago

Unfortunately I don't have any experience with this component, so I don't have any more information here. I was simply pointing out another issue that looked similar. 👍

djaglowski commented 4 weeks ago

I don't see anything obviously wrong with the config. Maybe @schmikei has ideas.

schmikei commented 4 weeks ago

Looking at the logs it seems like this is still running v0.88.0 of the collector? Just like in #28851, Is there any way we can upgrade the collector to v0.89.0 at a minimum to pull in the changes from #29084 to see if that helps gleam anything about the host that is getting EOF'ed?

Another debug tool we can use is the https://www.mongodb.com/docs/atlas/cli/stable/command/atlas-logs-download/#atlas-logs-download to further help debug the request once we get more information from the logs.

preshit1505 commented 3 weeks ago

The version has been updated to 0.101.0 but I still seeing those log errors

{"level":"warn","ts":1718036129.884542,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:245","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz","hostname":"kubevlea-shard-00-02.s6vnk.mongodb.net","startTime":1718035820.7869637,"endTime":1718036120.7869637}
{"level":"warn","ts":1718036130.78581,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:274","msg":"Attempted to retrieve audit logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","hostname":"kubevlea-shard-00-02.s6vnk.mongodb.net","log":"mongos-audit-log.gz","startTime":1718035820.7869637,"endTime":1718036120.7869637}
preshit1505 commented 3 weeks ago
image
schmikei commented 3 weeks ago

Seems like the problem is more on the later error though right?

data refused due to high memory usage

perhaps the host is running out of memory while trying to decode the logs? Are you able to provide deployment information around how much memory is provisioned to the collector?

preshit1505 commented 3 weeks ago

resources: limits: cpu: 100m memory: 2Gi

memory_limiter/logs: check_interval: 1s limit_percentage: 75 spike_limit_percentage: 10

schmikei commented 3 weeks ago

My assumption is that is the culprit, if there is a way to temporarily up the memory allocation to see if that resolves your issue, that might be at least a quick sanity check.

preshit1505 commented 3 weeks ago

@schmikei I tried to increase the resource limit (500m cpu and 3Gi memory) but it is still not getting the logs. But i dont see the error for memory usage. This is what logs say: {"level":"warn","ts":1718131735.3881474,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:245","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz","hostname":"cvc-bedrock-jagent-shard-00-01.rxh7p.mongodb.net","startTime":1718131399.2379475,"endTime":1718131717.9108157} {"level":"warn","ts":1718131736.31174,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:245","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz","hostname":"cvc-bedrock-jagent-shard-00-02.rxh7p.mongodb.net","startTime":1718131399.2379475,"endTime":1718131717.9108157} {"level":"warn","ts":1718131737.5263422,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:245","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz","hostname":"cvc-vhcl-foundation-m-shard-00-00.rxh7p.mongodb.net","startTime":1718131399.2379475,"endTime":1718131717.9108157} {"level":"warn","ts":1718131738.3456497,"caller":"mongodbatlasreceiver@v0.101.0/logs.go:245","msg":"Attempted to retrieve host logs but received 0 logs","kind":"receiver","name":"mongodbatlas","data_type":"logs","error":"EOF","log":"mongos.gz","hostname":"cvc-vhcl-foundation-m-shard-00-01.rxh7p.mongodb.net","startTime":1718131399.2379475,"endTime":1718131717.9108157} {"level":"warn","ts":1718131858.5703661,"caller":"internal/mongodb_atlas_client.go:98","msg":"server busy, retrying request","kind":"receiver","name":"mongodbatlas","data_type":"metrics","attempts":1,"delay":5.64123528}

image
schmikei commented 3 weeks ago

Hmm could you try to download those logs via the mongodbatlas CLI to see what the logs look like for that host?

atlas logs download "cvc-vhcl-foundation-m-shard-00-01.rxh7p.mongodb.net"  "mongos.gz"  --start 1718131399.2379475 --end 1718131717.9108157

The "attempted to retrieve host logs but received 0 logs" could just be valid for the request that the receiver is making. if there is a difference from the expected format I could imagine a change to make, however it could also very well be that those files have nothing to process and is expected behavior

https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/8edea61861459b378f4854d7696284f972c5a158/receiver/mongodbatlasreceiver/logs.go#L244

preshit1505 commented 3 weeks ago

@schmikei This is the log file i downloaded from the console [Uploading cvc-vhcl-foundation-m-shard-00-01.h3uie.mongodb.net_2024-06-10T20_15_22_2024-06-11T20_15_22_MONGODB.log…]()

preshit1505 commented 3 weeks ago
`{"t":{"$date":"2024-06-10T20:13:39.018+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn43318","msg":"Interrupted operation as its client disconnected","attr":{"opId":11668171}}
{"t":{"$date":"2024-06-10T20:13:39.019+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43319","msg":"Connection ended","attr":{"remote":"35.184.122.176:40108","uuid":"e452d7b7-6acf-4df5-ac90-4b9609b34b76","connectionId":43319,"connectionCount":58}}
{"t":{"$date":"2024-06-10T20:13:39.019+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43323","msg":"Connection ended","attr":{"remote":"35.184.122.176:40049","uuid":"a7838856-7266-4e10-9399-f10847ea2356","connectionId":43323,"connectionCount":57}}
{"t":{"$date":"2024-06-10T20:13:39.019+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43318","msg":"Connection ended","attr":{"remote":"35.184.122.176:40256","uuid":"7cf3019b-0df1-487b-9b5d-fb8c858cfa3a","connectionId":43318,"connectionCount":56}}
{"t":{"$date":"2024-06-10T20:13:44.984+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:40190","uuid":"1f7fffd0-8f0c-4308-af6e-bc32abf41e20","connectionId":43324,"connectionCount":57}}
{"t":{"$date":"2024-06-10T20:13:44.985+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:40192","uuid":"60b19f05-8ed1-4933-bd97-44a73af0a0f2","connectionId":43325,"connectionCount":58}}
{"t":{"$date":"2024-06-10T20:13:45.441+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43324","msg":"client metadata","attr":{"remote":"35.184.122.176:40190","client":"conn43324","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-10T20:13:45.441+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43325","msg":"client metadata","attr":{"remote":"35.184.122.176:40192","client":"conn43325","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-10T20:13:56.323+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:34904","uuid":"b4e3a7bb-a6d9-4b20-9fe7-c7955ab365f6","connectionId":43326,"connectionCount":59}}
{"t":{"$date":"2024-06-10T20:13:56.327+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:34912","uuid":"2d72e7b4-d8fb-43a4-973d-c6bf0ea67287","connectionId":43327,"connectionCount":60}}
{"t":{"$date":"2024-06-10T20:13:56.347+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43326","msg":"client metadata","attr":{"remote":"192.168.248.27:34904","client":"conn43326","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-10T20:13:56.348+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:34922","uuid":"ba38d329-1ffd-4d53-91de-467bb7291862","connectionId":43328,"connectionCount":61}}
{"t":{"$date":"2024-06-10T20:13:56.356+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43327","msg":"client metadata","attr":{"remote":"192.168.248.27:34912","client":"conn43327","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-10T20:13:56.366+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43328","msg":"client metadata","attr":{"remote":"192.168.248.27:34922","client":"conn43328","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-10T20:13:56.377+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn43328","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:34922","extraInfo":{}}}
{"t":{"$date":"2024-06-10T20:13:56.378+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn43326","msg":"Interrupted operation as its client disconnected","attr":{"opId":11668709}}
{"t":{"$date":"2024-06-10T20:13:56.379+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43326","msg":"Connection ended","attr":{"remote":"192.168.248.27:34904","uuid":"b4e3a7bb-a6d9-4b20-9fe7-c7955ab365f6","connectionId":43326,"connectionCount":60}}
{"t":{"$date":"2024-06-10T20:13:56.379+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43327","msg":"Connection ended","attr":{"remote":"192.168.248.27:34912","uuid":"2d72e7b4-d8fb-43a4-973d-c6bf0ea67287","connectionId":43327,"connectionCount":59}}
{"t":{"$date":"2024-06-10T20:13:56.379+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43328","msg":"Connection ended","attr":{"remote":"192.168.248.27:34922","uuid":"ba38d329-1ffd-4d53-91de-467bb7291862","connectionId":43328,"connectionCount":58}}
{"t":{"$date":"2024-06-10T20:13:58.984+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:40283","uuid":"c991c51d-c2c9-446c-8e15-b344bfffa442","connectionId":43329,"connectionCount":59}}
{"t":{"$date":"2024-06-10T20:13:58.988+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn43329","msg":"client metadata","attr":{"remote":"35.184.122.176:40283","client":"conn43329","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-10T20:13:58.989+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn43329","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:40283","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-10T20:14:19.015+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43329","msg":"Connection ended","attr":{"remote":"35.184.122.176:40283","uuid":"c991c51d-c2c9-446c-8e15-b344bfffa442","connectionId":43329,"connectionCount":58}}
{"t":{"$date":"2024-06-10T20:14:19.015+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn43324","msg":"Interrupted operation as its client disconnected","attr":{"opId":11669348}}
{"t":{"$date":"2024-06-10T20:14:19.016+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43325","msg":"Connection ended","attr":{"remote":"35.184.122.176:40192","uuid":"60b19f05-8ed1-4933-bd97-44a73af0a0f2","connectionId":43325,"connectionCount":57}}
{"t":{"$date":"2024-06-10T20:14:19.016+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn43324","msg":"Connection ended","attr":{"remote":"35.184.122.176:40190","uuid":"1f7fffd0-8f0c-4308-af6e-bc32abf41e20","connectionId":43324,"connectionCount":56}}
schmikei commented 3 weeks ago

Those logs are all from the June 10th, the receiver's request that is EOFing (I assume correctly) is for

Tue Jun 11 2024 18:43:19 GMT+0000 => Tue Jun 11 2024 18:48:37 GMT+0000

If you want you can limit your console download for that period to see if it's a valid EOF which I now am at least assuming it is.

preshit1505 commented 3 weeks ago

@schmikei Here is the logs

{"t":{"$date":"2024-06-11T18:43:32.750+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57356","uuid":"b34bc43e-fbd0-4a46-8463-8b33ef3b746b","connectionId":52767,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:43:32.750+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57358","uuid":"3843f10f-3f89-472e-b54e-c8e95cdd86e8","connectionId":52768,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:43:32.775+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52768","msg":"client metadata","attr":{"remote":"192.168.248.27:57358","client":"conn52768","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:43:32.776+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52767","msg":"client metadata","attr":{"remote":"192.168.248.27:57356","client":"conn52767","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:43:32.776+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57370","uuid":"410816ed-0a43-4e8e-9f9c-f3f9db7e489e","connectionId":52769,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:43:32.789+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52769","msg":"client metadata","attr":{"remote":"192.168.248.27:57370","client":"conn52769","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:43:32.800+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52769","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:57370","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:43:32.801+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52767","msg":"Interrupted operation as its client disconnected","attr":{"opId":14245364}}
{"t":{"$date":"2024-06-11T18:43:32.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52767","msg":"Connection ended","attr":{"remote":"192.168.248.27:57356","uuid":"b34bc43e-fbd0-4a46-8463-8b33ef3b746b","connectionId":52767,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:43:32.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52768","msg":"Connection ended","attr":{"remote":"192.168.248.27:57358","uuid":"3843f10f-3f89-472e-b54e-c8e95cdd86e8","connectionId":52768,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:43:32.802+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52769","msg":"Connection ended","attr":{"remote":"192.168.248.27:57370","uuid":"410816ed-0a43-4e8e-9f9c-f3f9db7e489e","connectionId":52769,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:44:17.883+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:33820","uuid":"e978c878-9ed7-4383-85f5-c40d29bed131","connectionId":52770,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:44:17.885+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:33826","uuid":"bc6c6083-c001-42db-b4fd-9cba13e28ebe","connectionId":52771,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:44:17.911+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52770","msg":"client metadata","attr":{"remote":"192.168.248.27:33820","client":"conn52770","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:44:17.912+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:33838","uuid":"6c12ae24-a1e5-4653-9ce1-c5fa35e156ca","connectionId":52772,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:44:17.912+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52771","msg":"client metadata","attr":{"remote":"192.168.248.27:33826","client":"conn52771","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:44:17.926+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52772","msg":"client metadata","attr":{"remote":"192.168.248.27:33838","client":"conn52772","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:44:17.937+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52772","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:33838","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:44:17.938+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52770","msg":"Interrupted operation as its client disconnected","attr":{"opId":14246771}}
{"t":{"$date":"2024-06-11T18:44:17.938+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52770","msg":"Connection ended","attr":{"remote":"192.168.248.27:33820","uuid":"e978c878-9ed7-4383-85f5-c40d29bed131","connectionId":52770,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:44:17.938+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52771","msg":"Connection ended","attr":{"remote":"192.168.248.27:33826","uuid":"bc6c6083-c001-42db-b4fd-9cba13e28ebe","connectionId":52771,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:44:17.939+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52772","msg":"Connection ended","attr":{"remote":"192.168.248.27:33838","uuid":"6c12ae24-a1e5-4653-9ce1-c5fa35e156ca","connectionId":52772,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:45:03.032+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53496","uuid":"16219979-bac6-4ecd-83ec-0103a145a0af","connectionId":52773,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:45:03.033+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53498","uuid":"75c98565-07d3-45df-b828-080af4efa954","connectionId":52774,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:45:03.059+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52774","msg":"client metadata","attr":{"remote":"192.168.248.27:53498","client":"conn52774","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:03.059+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52773","msg":"client metadata","attr":{"remote":"192.168.248.27:53496","client":"conn52773","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:03.060+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53504","uuid":"37cb1b77-8704-42e8-a0a4-17a2a847e5aa","connectionId":52775,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:45:03.073+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52775","msg":"client metadata","attr":{"remote":"192.168.248.27:53504","client":"conn52775","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:03.084+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52775","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:53504","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:03.085+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52773","msg":"Interrupted operation as its client disconnected","attr":{"opId":14248171}}
{"t":{"$date":"2024-06-11T18:45:03.085+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52773","msg":"Connection ended","attr":{"remote":"192.168.248.27:53496","uuid":"16219979-bac6-4ecd-83ec-0103a145a0af","connectionId":52773,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:45:03.086+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52774","msg":"Connection ended","attr":{"remote":"192.168.248.27:53498","uuid":"75c98565-07d3-45df-b828-080af4efa954","connectionId":52774,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:45:03.086+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52775","msg":"Connection ended","attr":{"remote":"192.168.248.27:53504","uuid":"37cb1b77-8704-42e8-a0a4-17a2a847e5aa","connectionId":52775,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:45:31.689+00:00"},"s":"I",  "c":"CONNPOOL", "id":22572,   "ctx":"MirrorMaestro","msg":"Dropping all pooled connections","attr":{"hostAndPort":"atlas-o7629p-shard-00-00.h3uie.mongodb.net:27017","error":"ConnectionPoolExpired: Pool for atlas-o7629p-shard-00-00.h3uie.mongodb.net:27017 has expired."}}
{"t":{"$date":"2024-06-11T18:45:38.204+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:38240","uuid":"82ae00bd-c090-41dc-8a8b-8bb137a8f27c","connectionId":52776,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:45:38.205+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:38119","uuid":"fbd1869d-3e3a-4537-96fd-46335d3645f4","connectionId":52777,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:45:38.583+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52777","msg":"client metadata","attr":{"remote":"35.184.122.176:38119","client":"conn52777","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:45:38.583+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52776","msg":"client metadata","attr":{"remote":"35.184.122.176:38240","client":"conn52776","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:45:48.172+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:56404","uuid":"7f6793f0-e9bb-4bbf-8eb5-8121b2490fb1","connectionId":52778,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:45:48.175+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:56416","uuid":"a7147c7b-888a-43ca-b8cd-8fa1bb9595e6","connectionId":52779,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:45:48.202+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52779","msg":"client metadata","attr":{"remote":"192.168.248.27:56416","client":"conn52779","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:48.202+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52778","msg":"client metadata","attr":{"remote":"192.168.248.27:56404","client":"conn52778","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:48.204+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:56428","uuid":"a8b38d70-edc4-4fea-899e-e652b8836c0f","connectionId":52780,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:45:48.226+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52780","msg":"client metadata","attr":{"remote":"192.168.248.27:56428","client":"conn52780","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:45:48.238+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52780","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:56428","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:48.238+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52778","msg":"Interrupted operation as its client disconnected","attr":{"opId":14249584}}
{"t":{"$date":"2024-06-11T18:45:48.239+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52778","msg":"Connection ended","attr":{"remote":"192.168.248.27:56404","uuid":"7f6793f0-e9bb-4bbf-8eb5-8121b2490fb1","connectionId":52778,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:45:48.239+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52779","msg":"Connection ended","attr":{"remote":"192.168.248.27:56416","uuid":"a7147c7b-888a-43ca-b8cd-8fa1bb9595e6","connectionId":52779,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:45:48.239+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52780","msg":"Connection ended","attr":{"remote":"192.168.248.27:56428","uuid":"a8b38d70-edc4-4fea-899e-e652b8836c0f","connectionId":52780,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:45:49.001+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:38029","uuid":"939d357c-4785-4b5f-beba-b6ea177b1097","connectionId":52781,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:45:49.006+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52781","msg":"client metadata","attr":{"remote":"35.184.122.176:38029","client":"conn52781","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:45:49.006+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52781","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:38029","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:45:56.537+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn663","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:45:56.537+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn663","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.26:33332","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:56.538+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn664","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:45:56.538+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn664","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.26:33316","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:56.539+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn664","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:45:56.539+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn664","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.26:33316","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:56.549+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn664","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:45:56.549+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn664","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.26:33316","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:45:56.551+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn664","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:45:56.551+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn664","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.26:33316","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:08.726+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52781","msg":"Connection ended","attr":{"remote":"35.184.122.176:38029","uuid":"939d357c-4785-4b5f-beba-b6ea177b1097","connectionId":52781,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:46:08.727+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52776","msg":"Connection ended","attr":{"remote":"35.184.122.176:38240","uuid":"82ae00bd-c090-41dc-8a8b-8bb137a8f27c","connectionId":52776,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:46:08.727+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52777","msg":"Interrupted operation as its client disconnected","attr":{"opId":14250310}}
{"t":{"$date":"2024-06-11T18:46:08.727+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52777","msg":"Connection ended","attr":{"remote":"35.184.122.176:38119","uuid":"fbd1869d-3e3a-4537-96fd-46335d3645f4","connectionId":52777,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:46:15.238+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:6648","uuid":"cfda01fe-30bc-4efd-8df5-9a52e3e2b445","connectionId":52782,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:46:15.238+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:6649","uuid":"01ee62e9-1fa0-42cd-857b-6efd6990950e","connectionId":52783,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:46:15.645+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52782","msg":"client metadata","attr":{"remote":"35.184.122.176:6648","client":"conn52782","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:15.646+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52783","msg":"client metadata","attr":{"remote":"35.184.122.176:6649","client":"conn52783","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:17.307+00:00"},"s":"I",  "c":"CONNPOOL", "id":22572,   "ctx":"MirrorMaestro","msg":"Dropping all pooled connections","attr":{"hostAndPort":"atlas-o7629p-shard-00-02.h3uie.mongodb.net:27017","error":"ConnectionPoolExpired: Pool for atlas-o7629p-shard-00-02.h3uie.mongodb.net:27017 has expired."}}
{"t":{"$date":"2024-06-11T18:46:21.145+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn778","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:46:21.145+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn778","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.28:33058","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:21.147+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn779","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:46:21.147+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn779","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.28:33064","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:21.147+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn778","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:46:21.147+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn778","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.28:33058","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:21.157+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn778","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:46:21.157+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn778","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.28:33058","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:21.159+00:00"},"s":"W",  "c":"ACCESS",   "id":5626700, "ctx":"conn778","msg":"Client has attempted to reauthenticate as a single user","attr":{"user":{"user":"__system","db":"local"}}}
{"t":{"$date":"2024-06-11T18:46:21.159+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn778","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":false,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.28:33058","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:29.344+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:37950","uuid":"a5f1529f-d249-4e9b-a7dd-3a2001c8bef7","connectionId":52784,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:46:29.369+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52784","msg":"client metadata","attr":{"remote":"35.184.122.176:37950","client":"conn52784","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:29.369+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52784","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:37950","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:46:31.235+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10702","uuid":"6ef7501e-9429-4dc0-b4c1-b519d80d3972","connectionId":52785,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:46:31.236+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10703","uuid":"ef317ad8-9d33-4f34-8d1f-4cdcccd39fb7","connectionId":52786,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:46:31.578+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52785","msg":"client metadata","attr":{"remote":"35.184.122.176:10702","client":"conn52785","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:31.581+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52786","msg":"client metadata","attr":{"remote":"35.184.122.176:10703","client":"conn52786","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:33.743+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57872","uuid":"c1a1bdb7-2178-4c6b-8613-eb3a5a02fd53","connectionId":52787,"connectionCount":63}}
{"t":{"$date":"2024-06-11T18:46:33.750+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57876","uuid":"f2ac35a5-e829-4296-ab30-bb6a78bd3469","connectionId":52788,"connectionCount":64}}
{"t":{"$date":"2024-06-11T18:46:33.780+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52787","msg":"client metadata","attr":{"remote":"192.168.248.27:57872","client":"conn52787","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:46:33.780+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:57882","uuid":"7bcab05f-dc6f-42ac-86f2-39464fd3f106","connectionId":52789,"connectionCount":65}}
{"t":{"$date":"2024-06-11T18:46:33.787+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52788","msg":"client metadata","attr":{"remote":"192.168.248.27:57876","client":"conn52788","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:46:33.798+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52789","msg":"client metadata","attr":{"remote":"192.168.248.27:57882","client":"conn52789","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:46:33.810+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52789","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:57882","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:46:33.811+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52787","msg":"Interrupted operation as its client disconnected","attr":{"opId":14251144}}
{"t":{"$date":"2024-06-11T18:46:33.811+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52787","msg":"Connection ended","attr":{"remote":"192.168.248.27:57872","uuid":"c1a1bdb7-2178-4c6b-8613-eb3a5a02fd53","connectionId":52787,"connectionCount":64}}
{"t":{"$date":"2024-06-11T18:46:33.812+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52788","msg":"Connection ended","attr":{"remote":"192.168.248.27:57876","uuid":"f2ac35a5-e829-4296-ab30-bb6a78bd3469","connectionId":52788,"connectionCount":63}}
{"t":{"$date":"2024-06-11T18:46:33.812+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52789","msg":"Connection ended","attr":{"remote":"192.168.248.27:57882","uuid":"7bcab05f-dc6f-42ac-86f2-39464fd3f106","connectionId":52789,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:46:40.699+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10707","uuid":"e2108463-65ea-4ec8-bae9-198467477897","connectionId":52790,"connectionCount":63}}
{"t":{"$date":"2024-06-11T18:46:40.703+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52790","msg":"client metadata","attr":{"remote":"35.184.122.176:10707","client":"conn52790","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:46:40.703+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52790","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:10707","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:46:48.965+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52784","msg":"Connection ended","attr":{"remote":"35.184.122.176:37950","uuid":"a5f1529f-d249-4e9b-a7dd-3a2001c8bef7","connectionId":52784,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:46:48.966+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52783","msg":"Connection ended","attr":{"remote":"35.184.122.176:6649","uuid":"01ee62e9-1fa0-42cd-857b-6efd6990950e","connectionId":52783,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:46:48.966+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52782","msg":"Interrupted operation as its client disconnected","attr":{"opId":14251572}}
{"t":{"$date":"2024-06-11T18:46:48.967+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52782","msg":"Connection ended","attr":{"remote":"35.184.122.176:6648","uuid":"cfda01fe-30bc-4efd-8df5-9a52e3e2b445","connectionId":52782,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:47:00.785+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52786","msg":"Interrupted operation as its client disconnected","attr":{"opId":14251752}}
{"t":{"$date":"2024-06-11T18:47:00.786+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52790","msg":"Connection ended","attr":{"remote":"35.184.122.176:10707","uuid":"e2108463-65ea-4ec8-bae9-198467477897","connectionId":52790,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:47:00.786+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52785","msg":"Connection ended","attr":{"remote":"35.184.122.176:10702","uuid":"6ef7501e-9429-4dc0-b4c1-b519d80d3972","connectionId":52785,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:47:00.786+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52786","msg":"Connection ended","attr":{"remote":"35.184.122.176:10703","uuid":"ef317ad8-9d33-4f34-8d1f-4cdcccd39fb7","connectionId":52786,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:47:05.843+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10716","uuid":"d6a9d912-f9e6-4804-b050-d3c62ea0c7d9","connectionId":52791,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:47:05.846+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10721","uuid":"105d3260-8cdb-4bf1-955d-dabf8807dff2","connectionId":52792,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:47:06.198+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52791","msg":"client metadata","attr":{"remote":"35.184.122.176:10716","client":"conn52791","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:47:06.199+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52792","msg":"client metadata","attr":{"remote":"35.184.122.176:10721","client":"conn52792","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:47:18.881+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53934","uuid":"74142122-18eb-4fa0-8026-4aa5f4dafdbd","connectionId":52793,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:47:18.885+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53948","uuid":"8cc0284e-e087-4a03-8332-a9a08ba50a82","connectionId":52794,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:47:18.915+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52793","msg":"client metadata","attr":{"remote":"192.168.248.27:53934","client":"conn52793","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:47:18.916+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:53954","uuid":"804c68dc-b312-4652-88a1-c2e2c82ff44a","connectionId":52795,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:47:18.926+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52794","msg":"client metadata","attr":{"remote":"192.168.248.27:53948","client":"conn52794","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:47:18.933+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52795","msg":"client metadata","attr":{"remote":"192.168.248.27:53954","client":"conn52795","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:47:18.945+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52795","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:53954","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:47:18.946+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52793","msg":"Interrupted operation as its client disconnected","attr":{"opId":14252572}}
{"t":{"$date":"2024-06-11T18:47:18.946+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52793","msg":"Connection ended","attr":{"remote":"192.168.248.27:53934","uuid":"74142122-18eb-4fa0-8026-4aa5f4dafdbd","connectionId":52793,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:47:18.947+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52794","msg":"Connection ended","attr":{"remote":"192.168.248.27:53948","uuid":"8cc0284e-e087-4a03-8332-a9a08ba50a82","connectionId":52794,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:47:18.947+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52795","msg":"Connection ended","attr":{"remote":"192.168.248.27:53954","uuid":"804c68dc-b312-4652-88a1-c2e2c82ff44a","connectionId":52795,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:47:20.700+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:10726","uuid":"cca1af12-cfad-4296-8259-9301cb5f034d","connectionId":52796,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:47:20.704+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52796","msg":"client metadata","attr":{"remote":"35.184.122.176:10726","client":"conn52796","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:47:20.704+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52796","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:10726","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:47:40.791+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52796","msg":"Connection ended","attr":{"remote":"35.184.122.176:10726","uuid":"cca1af12-cfad-4296-8259-9301cb5f034d","connectionId":52796,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:47:40.791+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52791","msg":"Interrupted operation as its client disconnected","attr":{"opId":14253152}}
{"t":{"$date":"2024-06-11T18:47:40.791+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52792","msg":"Connection ended","attr":{"remote":"35.184.122.176:10721","uuid":"105d3260-8cdb-4bf1-955d-dabf8807dff2","connectionId":52792,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:47:40.792+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52791","msg":"Connection ended","attr":{"remote":"35.184.122.176:10716","uuid":"d6a9d912-f9e6-4804-b050-d3c62ea0c7d9","connectionId":52791,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:47:53.830+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:26012","uuid":"7ba8db61-7a33-4c4b-b68c-b4d4ae3db98f","connectionId":52797,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:47:53.830+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:26078","uuid":"657e1fdb-fd92-4462-9ddf-5374a6998055","connectionId":52798,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:47:54.184+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52798","msg":"client metadata","attr":{"remote":"35.184.122.176:26078","client":"conn52798","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:47:54.185+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52797","msg":"client metadata","attr":{"remote":"35.184.122.176:26012","client":"conn52797","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:48:04.018+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:49602","uuid":"9daef53c-fac0-4ef0-aeb3-5864b5720f18","connectionId":52799,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:48:04.021+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:49616","uuid":"78fed9d6-4ac2-459c-b5af-bfecc30d6945","connectionId":52800,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:48:04.058+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52799","msg":"client metadata","attr":{"remote":"192.168.248.27:49602","client":"conn52799","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:04.059+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:49626","uuid":"c0cc0347-c41b-462f-b795-521fbd8dfcc8","connectionId":52801,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:48:04.061+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52800","msg":"client metadata","attr":{"remote":"192.168.248.27:49616","client":"conn52800","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:04.074+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52801","msg":"client metadata","attr":{"remote":"192.168.248.27:49626","client":"conn52801","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:04.085+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52801","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:49626","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:48:04.086+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52799","msg":"Interrupted operation as its client disconnected","attr":{"opId":14253981}}
{"t":{"$date":"2024-06-11T18:48:04.087+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52799","msg":"Connection ended","attr":{"remote":"192.168.248.27:49602","uuid":"9daef53c-fac0-4ef0-aeb3-5864b5720f18","connectionId":52799,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:48:04.087+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52800","msg":"Connection ended","attr":{"remote":"192.168.248.27:49616","uuid":"78fed9d6-4ac2-459c-b5af-bfecc30d6945","connectionId":52800,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:48:04.088+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52801","msg":"Connection ended","attr":{"remote":"192.168.248.27:49626","uuid":"c0cc0347-c41b-462f-b795-521fbd8dfcc8","connectionId":52801,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:48:04.292+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:25653","uuid":"dfd8192d-3e73-41d0-8dfb-a095a171098c","connectionId":52802,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:48:04.296+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52802","msg":"client metadata","attr":{"remote":"35.184.122.176:25653","client":"conn52802","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:48:04.296+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52802","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:25653","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:48:24.328+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52802","msg":"Connection ended","attr":{"remote":"35.184.122.176:25653","uuid":"dfd8192d-3e73-41d0-8dfb-a095a171098c","connectionId":52802,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:48:24.328+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52797","msg":"Connection ended","attr":{"remote":"35.184.122.176:26012","uuid":"7ba8db61-7a33-4c4b-b68c-b4d4ae3db98f","connectionId":52797,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:48:24.329+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52798","msg":"Interrupted operation as its client disconnected","attr":{"opId":14254663}}
{"t":{"$date":"2024-06-11T18:48:24.329+00:00"},"s":"I",  "c":"NETWORK",  "id":22944,   "ctx":"conn52798","msg":"Connection ended","attr":{"remote":"35.184.122.176:26078","uuid":"657e1fdb-fd92-4462-9ddf-5374a6998055","connectionId":52798,"connectionCount":57}}
{"t":{"$date":"2024-06-11T18:48:29.162+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:25681","uuid":"04092fb5-3f08-4de9-90d9-ab8ca585ae35","connectionId":52803,"connectionCount":58}}
{"t":{"$date":"2024-06-11T18:48:29.164+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:25906","uuid":"c7e5007f-af56-4a84-9db8-2a69d96beff5","connectionId":52804,"connectionCount":59}}
{"t":{"$date":"2024-06-11T18:48:29.506+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52804","msg":"client metadata","attr":{"remote":"35.184.122.176:25906","client":"conn52804","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:48:29.507+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52803","msg":"client metadata","attr":{"remote":"35.184.122.176:25681","client":"conn52803","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:48:44.293+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"35.184.122.176:26022","uuid":"cefe0fdb-373b-4b91-97af-cea67c6f9b7c","connectionId":52805,"connectionCount":60}}
{"t":{"$date":"2024-06-11T18:48:44.297+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52805","msg":"client metadata","attr":{"remote":"35.184.122.176:26022","client":"conn52805","negotiatedCompressors":[],"doc":{"driver":{"name":"mongo-java-driver|sync","version":"4.11.1"},"os":{"type":"Linux","name":"Linux","architecture":"amd64","version":"5.15.146+"},"platform":"Java/Eclipse Adoptium/21.0.2+13-LTS"}}}
{"t":{"$date":"2024-06-11T18:48:44.297+00:00"},"s":"I",  "c":"ACCESS",   "id":20429,   "ctx":"conn52805","msg":"Successfully authenticated","attr":{"client":"35.184.122.176:26022","mechanism":"MONGODB-X509","user":"CN=cvc-vhcl-foundation-m-user,OU=cvc,O=bedrock.ford","db":"$external"}}
{"t":{"$date":"2024-06-11T18:48:49.159+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:35990","uuid":"6e22a0ea-c384-4456-932a-2d5cb224a471","connectionId":52806,"connectionCount":61}}
{"t":{"$date":"2024-06-11T18:48:49.162+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:36002","uuid":"7f7ba103-6f83-42ed-a4a2-04748a5a649d","connectionId":52807,"connectionCount":62}}
{"t":{"$date":"2024-06-11T18:48:49.186+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52806","msg":"client metadata","attr":{"remote":"192.168.248.27:35990","client":"conn52806","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:49.186+00:00"},"s":"I",  "c":"NETWORK",  "id":22943,   "ctx":"listener","msg":"Connection accepted","attr":{"remote":"192.168.248.27:36014","uuid":"7de3f703-7129-4ff1-bd0c-d83b6a4e7405","connectionId":52808,"connectionCount":63}}
{"t":{"$date":"2024-06-11T18:48:49.189+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52807","msg":"client metadata","attr":{"remote":"192.168.248.27:36002","client":"conn52807","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:49.200+00:00"},"s":"I",  "c":"NETWORK",  "id":51800,   "ctx":"conn52808","msg":"client metadata","attr":{"remote":"192.168.248.27:36014","client":"conn52808","negotiatedCompressors":[],"doc":{"application":{"name":"MongoDB Automation Agent v13.16.2.8826 (git: 36d72fa13b663f402e1285ab8458536766897530)"},"driver":{"name":"mongo-go-driver","version":"v1.12.0-cloud"},"os":{"type":"linux","architecture":"amd64"},"platform":"go1.21.10"}}}
{"t":{"$date":"2024-06-11T18:48:49.211+00:00"},"s":"I",  "c":"ACCESS",   "id":20250,   "ctx":"conn52808","msg":"Authentication succeeded","attr":{"mechanism":"SCRAM-SHA-256","speculative":true,"principalName":"__system","authenticationDatabase":"local","remote":"192.168.248.27:36014","extraInfo":{}}}
{"t":{"$date":"2024-06-11T18:48:49.212+00:00"},"s":"I",  "c":"-",        "id":20883,   "ctx":"conn52806","msg":"Interrupted operation as its client disconnected","attr":{"opId":14255414}}
preshit1505 commented 2 weeks ago

@schmikei Any suggestion after looking at the logs? 🤔

schmikei commented 2 weeks ago

@schmikei Any suggestion after looking at the logs? 🤔

Unfortunately I'm kind of stumped, those look like the correctly formatted JSON logs we are expecting... The only thing I could suggest to help troubleshoot more is rather than using the UI to download that we try to use the CLI to better replicate what the receiver is doing and if that gleams anything obvious thats going on here...

If still unable to replicate, and if you're willing, you can try to clone down the repository and make modifications/print statements if it helps debug: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/5bd5a1bffc969e8d1bcd8583f6d0b590896f26ef/receiver/mongodbatlasreceiver/logs.go#L158-L184

Always happy to help collaborate on a PR but I'm coming up stumped in this circumstance :/