Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

zabbix-agent 2 issue: failed to process an incoming connection from ...: EOF #1439

Open
LovingFox opened this issue Jun 23, 2024 · 23 comments
Open

Comments

@LovingFox
Copy link

Connection between server and agent constantly become failed.
Zabbix-Server 7.0.0 is setup without docker, zabbix-agent 2 in the remote host works in docker.

There are not any errors if I use zabbix-agent 1 in docker.

Logs
1.2.3.4 is a server IP
my_host is a name of the agent at the remote host

Agent logs:

docker logs -f zabbix-agent
2024/06/23 06:40:09.166575 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.173052 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.177321 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.184596 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.188862 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.192093 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.195868 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.200036 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.204127 failed to process an incoming connection from 1.2.3.4: EOF
2024/06/23 06:40:09.208074 failed to process an incoming connection from 1.2.3.4: EOF

Server logs the same time:

tail -f /var/log/zabbix/zabbix_server.log
110655:20240623:063913.001 resuming Zabbix agent checks on host "my_host": connection restored
110655:20240623:063921.045 Zabbix agent item "system.cpu.util[,nice]" on host "my_host" failed: first network error, wait for 15 seconds
110655:20240623:063937.147 resuming Zabbix agent checks on host "my_host": connection restored
110655:20240623:063945.018 Zabbix agent item "system.cpu.util[,guest]" on host "my_host" failed: first network error, wait for 15 seconds
110655:20240623:064001.004 resuming Zabbix agent checks on host "my_host": connection restored
110655:20240623:064009.009 Zabbix agent item "vfs.fs.size[/etc/zabbix/agent.pass,pfree]" on host "my_host" failed: first network error, wait for 15 seconds
110655:20240623:064024.973 resuming Zabbix agent checks on host "my_host": connection restored
110655:20240623:064028.247 Zabbix agent item "system.cpu.util[,idle]" on host "my_host" failed: first network error, wait for 15 seconds


Versions

Server:

$ /usr/sbin/zabbix_server --version
zabbix_server (Zabbix) 7.0.0
Revision 49955f1fb5c 3 June 2024, compilation time: Jun  3 2024 05:55:33

Copyright (C) 2024 Zabbix SIA
License AGPLv3: GNU Affero General Public License version 3 <https://www.gnu.org/licenses/>.
This is free software: you are free to change and redistribute it according to
the license. There is NO WARRANTY, to the extent permitted by law.

This product includes software developed by the OpenSSL Project
for use in the OpenSSL Toolkit (http://www.openssl.org/).

Compiled with OpenSSL 3.0.9 30 May 2023
Running with OpenSSL 3.0.11 19 Sep 2023

Agent:

sudo docker pull zabbix/zabbix-agent2:ubuntu-7.0.0

Configs:

Server:

$ sudo cat /etc/zabbix/zabbix_server.conf | grep -v -E "^#|^$"
LogFile=/var/log/zabbix/zabbix_server.log
LogFileSize=0
PidFile=/run/zabbix/zabbix_server.pid
SocketDir=/run/zabbix
DBHost=localhost
DBName=zabbix
DBUser=zabbix
DBPassword=......
DBSocket=/run/mysqld/mysqld.sock
SNMPTrapperFile=/var/log/snmptrap/snmptrap.log
Timeout=4
FpingLocation=/usr/bin/fping
Fping6Location=/usr/bin/fping6
LogSlowQueries=3000
StatsAllowedIP=127.0.0.1
EnableGlobalScripts=0

Agent:

sudo docker run --name zabbix-agent \
  --restart unless-stopped \
  --net=host --pid=host \
  -v /etc/localtime:/etc/localtime:ro \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v /etc/zabbix/agent.pass:/etc/zabbix/agent.pass \
  --privileged --restart=always --init \
  --env ZBX_SERVER_HOST=1.2.3.4 \
  --env ZBX_TLSCONNECT=psk \
  --env ZBX_TLSACCEPT=psk \
  --env ZBX_TLSPSKIDENTITY=my_host \
  --env ZBX_TLSPSKFILE=/etc/zabbix/agent.pass \
  --env ZBX_ACTIVE_ALLOW=false \
  -d zabbix/zabbix-agent2:ubuntu-7.0.0

@dotneft
Copy link
Collaborator

dotneft commented Jun 23, 2024

Incorrect usage ZBX_TLSPSKFILE. Please check documentation: https://github.com/zabbix/zabbix-docker/tree/7.0/Dockerfiles/agent2#varlibzabbixenc

@LovingFox
Copy link
Author

Incorrect usage ZBX_TLSPSKFILE. Please check documentation: https://github.com/zabbix/zabbix-docker/tree/7.0/Dockerfiles/agent2#varlibzabbixenc

As you can see in my config (see below) that I mount the right one file as ZBX_TLSPSKFILE. A TLS-connection is established correctly that means doesn't matter where ZBX_TLSPSKFILE is located. It's wrong with something another...

  -v /etc/zabbix/agent.pass:/etc/zabbix/agent.pass \
...
  --env ZBX_TLSPSKFILE=/etc/zabbix/agent.pass \

@dotneft
Copy link
Collaborator

dotneft commented Jun 23, 2024

Does not matter, no reason to check something, while it is not properly configured. Specify only file name in the variable and mount the file to /var/lib/zabbix/enc. Then check again and provide full logs since Zabbix agent start with enabled debug mode = 4.

@dotneft
Copy link
Collaborator

dotneft commented Jun 23, 2024

Also, I recommend you check the problem without TLS connection options.
Do you have direct connection between server and agent? Without any additional services (NAT, load balancers and etc)?

@LovingFox
Copy link
Author

Also, I recommend you check the problem without TLS connection options.

Yes, I did some tests and if I switch off TLS all working good, no errors.

Do you have direct connection between server and agent? Without any additional services (NAT, load balancers and etc)?

The host with agent is without any NAT/balancers. The host working as zabbix-server is hosted in AWS VM so that means the 1:1 NAT exists at AWS cloud network side.

Does not matter, no reason to check something, while it is not properly configured. Specify only file name in the variable and mount the file to /var/lib/zabbix/enc. Then check again and provide full logs since Zabbix agent start with enabled debug mode = 4.

Done. The log file is attached: zabbix-agent.log
It's seen that errors logged immediately.

agent run config:

sudo docker run --name zabbix-agent \
  --restart unless-stopped \
  --net=host --pid=host \
  --privileged --restart=always --init \
  -v /etc/localtime:/etc/localtime:ro \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v /etc/zabbix/enc:/var/lib/zabbix/enc \
  --env ZBX_TLSCONNECT=psk \
  --env ZBX_TLSACCEPT=psk \
  --env ZBX_TLSPSKIDENTITY=my_host \
  --env ZBX_TLSPSKFILE=agent.pass \
  --env ZBX_SERVER_HOST=1.2.3.4 \
  --env ZBX_ACTIVE_ALLOW=false \
  --env ZBX_DEBUGLEVEL=4 \
  -d zabbix/zabbix-agent2:ubuntu-7.0.0

@dotneft
Copy link
Collaborator

dotneft commented Jun 23, 2024

Thank you for the explanation. Currently I see the following steps to check the problem:

  1. Collect tcpdump on agent side (filter by 10050 port) and send it to my mailbox (you can find in each Dockerfile the address)
  2. Try to install Zabbix agent 2 directly on the host and check without docker.

@justinclift
Copy link

justinclift commented Jul 2, 2024

As a data point, the same problem (many failed to process an incoming connection entries in the zabbix agent log) is happening in non-docker setups too:

https://support.zabbix.com/browse/ZBX-22351

Saying that as it's happening with my systems (not in docker) currently. Both on host servers (physical hardware) and VMs running on those servers. 😦

@justinclift
Copy link

Checking one of the host servers presently, the zabbix agent logs are 99.9% these messages:

# wc -l zabbix_agent2.log
540778 zabbix_agent2.log
# grep 'failed to process an incoming connection from' zabbix_agent2.log | wc -l
529908

So of the 540k lines in the log file so far today, 530k are this message being repeated over and over.

@dotneft
Copy link
Collaborator

dotneft commented Jul 2, 2024

do you monitor "net.tcp.service[tcp,,10050]"?

@justinclift
Copy link

justinclift commented Jul 2, 2024

No, I have no idea what that is. If that's some custom setting, then there's definitely no chance it was present.

In the meantime, I've rebuilt the entire setup to use Zabbix 6.0 LTS instead which isn't exhibiting the problem.

@matzmz
Copy link

matzmz commented Aug 13, 2024

I'm still having the same issue:

docker.io/zabbix/zabbix-agent2:alpine-6.4.13

Also other people using zabbix container (monitoring k8s cluster) have similar issue.
Any idea ?

@justinclift
Copy link

Any idea ?

Is downgrading to Zabbix 6.0 feasible?

@matzmz
Copy link

matzmz commented Aug 14, 2024

@justinclift Unfortunately, I am unable to downgrade to version 6.0.

@dotneft
Copy link
Collaborator

dotneft commented Aug 14, 2024

what image was working fine?

@rzemykers
Copy link

rzemykers commented Aug 17, 2024

I tried many of agents (7.0.X, 6.0.X) on my k8s cluster and no results.. every time i get failed to process an incoming connection from...
I have 7.0.2 server at debian 12.

@justinclift
Copy link

Interesting. Sounds like the problem is with Zabbix Server v7, and it might not be Zabbix Agent 2 causing issues.

@rzemykers
Copy link

at this moment im using active server, passive doesn’t work.

@matzmz
Copy link

matzmz commented Aug 17, 2024

@justinclift The problem also occurs with version 6.4.13.

@rzemykers I'm using an active proxy.

@justinclift
Copy link

@matzmz Just for clarity, that's version 6.4.13 of the Zabbix server yeah?

@matzmz
Copy link

matzmz commented Aug 17, 2024

@justinclift, in my setup, both the Zabbix proxy and agent2 are running as Docker containers, and both are at version 6.4.13. The Zabbix server, which is running on a virtual machine, is also at version 6.4.13. The errors I'm encountering are related to the Zabbix agent2 side.

@adampl
Copy link

adampl commented Sep 10, 2024

I'm also getting this error in agents deployed on Kubernetes cluster (Kind) with Helm. It's not difficult to reproduce, just run it...

@bova
Copy link

bova commented Sep 23, 2024

I'm also facing the same issue with agents and proxies in a k8s cluster. Does anyone have any solutions or workarounds?

@rick51231
Copy link

rick51231 commented Sep 23, 2024

Same here.
6 host vSphere + vSAN cluster, 13 agent 2 (linux/windows), 33 SNMP.
Zabbix server 7.0.3 + MySQL in docker on the separate VM.

Log from the Debian 12 vm with agent 2 (without docker):


2024/09/23 16:24:11.821579 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"65.785846"}]}' to '10.25.172.41'
2024/09/23 16:24:12.001064 plugin Cpu: executing collector task
2024/09/23 16:24:12.833725 executed direct exporter task for key 'docker.container_stats[[/Passcore]]'
2024/09/23 16:24:12.833879 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"cpu_stats\":{\"cpu_usage\":{\"total_usage\":763065528000,\"percpu_usage\":null,\"percent_usage\":0.007307692307692308,\"usage_in_kernelmode\":319990144000,\"usage_in_usermode\":443075384000},\"system_cpu_usage\":19289335530000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"precpu_stats\":{\"cpu_usage\":{\"total_usage\":763065452000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":319990112000,\"usage_in_usermode\":443075340000},\"system_cpu_usage\":19289331370000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"memory_stats\":{\"usage\":250347520,\"max_usage\":0,\"stats\":{\"active_anon\":59977728,\"active_file\":23678976,\"anon\":199630848,\"anon_thp\":169869312,\"file\":41418752,\"file_dirty\":0,\"file_mapped\":30855168,\"file_writeback\":0,\"inactive_anon\":145104896,\"inactive_file\":17739776,\"kernel_stack\":327680,\"pgactivate\":53600,\"pgdeactivate\":31823,\"pgfault\":89058,\"pglazyfree\":0,\"pglazyfreed\":0,\"pgmajfault\":1086,\"pgrefill\":33198,\"pgscan\":130880,\"pgsteal\":16930,\"shmem\":0,\"slab\":2488360,\"slab_reclaimable\":1862056,\"slab_unreclaimable\":626304,\"sock\":0,\"thp_collapse_alloc\":215,\"thp_fault_alloc\":876,\"unevictable\":0,\"workingset_activate\":0,\"workingset_nodereclaim\":0,\"workingset_refault\":0},\"failcnt\":0,\"limit\":33655873536,\"commitbytes\":0,\"commitpeakbytes\":0,\"privateworkingset\":0},\"pids_stats\":{\"current\":20},\"name\":\"/Passcore\",\"id\":\"1f8ad0b8f0e077305310f8a00d1c407622057627303055042970c86846c779d7\",\"networks\":{\"eth0\":{\"rx_bytes\":34944821,\"rx_packets\":280363,\"rx_errors\":0,\"rx_dropped\":0,\"tx_bytes\":6529803294,\"tx_packets\":305876,\"tx_errors\":0,\"tx_dropped\":0,\"endpoint_id\":\"\",\"instance_id\":\"\"}}}"}]}' to '10.25.172.41'
2024/09/23 16:24:13.000449 plugin Cpu: executing collector task
2024/09/23 16:24:14.000907 plugin Cpu: executing collector task
2024/09/23 16:24:15.002173 plugin Cpu: executing collector task
2024/09/23 16:24:15.201303 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:15.201784 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:15.317300 failed to process an incoming connection from 10.25.172.41: read tcp 10.25.172.37:10050->10.25.172.41:26174: i/o timeout
2024/09/23 16:24:16.000932 plugin Cpu: executing collector task
2024/09/23 16:24:17.000828 plugin Cpu: executing collector task
2024/09/23 16:24:18.000480 plugin Cpu: executing collector task
2024/09/23 16:24:18.315304 received passive check request: '{"request":"passive checks","data":[{"key":"vm.memory.size[total]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.315703 [1] processing update request (1 requests)
2024/09/23 16:24:18.315947 [1] adding new request for key: 'vm.memory.size[total]'
2024/09/23 16:24:18.316282 [1] created direct exporter task for plugin 'Memory' itemid:0 key 'vm.memory.size[total]'
2024/09/23 16:24:18.316620 executing direct exporter task for key 'vm.memory.size[total]'
2024/09/23 16:24:18.316910 executed direct exporter task for key 'vm.memory.size[[total]]'
2024/09/23 16:24:18.317019 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.in[\"ens192\",dropped]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.317190 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"33655873536"}]}' to '10.25.172.41'
2024/09/23 16:24:18.317455 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.in[\"ens192\",errors]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.317873 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.out[\"ens192\",errors]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.318218 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_info[\"/gitlab-runner\",full]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.318350 received passive check request: '{"request":"passive checks","data":[{"key":"docker.images","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.318807 [1] processing update request (1 requests)
2024/09/23 16:24:18.319070 [1] adding new request for key: 'net.if.in["ens192",dropped]'
2024/09/23 16:24:18.319121 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.in["ens192",dropped]'
2024/09/23 16:24:18.319203 [1] processing update request (1 requests)
2024/09/23 16:24:18.319402 [1] adding new request for key: 'net.if.in["ens192",errors]'
2024/09/23 16:24:18.319436 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.in["ens192",errors]'
2024/09/23 16:24:18.319488 [1] processing update request (1 requests)
2024/09/23 16:24:18.319520 [1] adding new request for key: 'docker.container_info["/gitlab-runner",full]'
2024/09/23 16:24:18.319550 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_info["/gitlab-runner",full]'
2024/09/23 16:24:18.319603 [1] processing update request (1 requests)
2024/09/23 16:24:18.319655 [1] adding new request for key: 'net.if.out["ens192",errors]'
2024/09/23 16:24:18.319684 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.out["ens192",errors]'
2024/09/23 16:24:18.319748 executing direct exporter task for key 'net.if.out["ens192",errors]'
2024/09/23 16:24:18.320005 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.out[\"ens192\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.320117 received passive check request: '{"request":"passive checks","data":[{"key":"docker.info","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.320265 [1] processing update request (1 requests)
2024/09/23 16:24:18.320343 [1] adding new request for key: 'docker.info'
2024/09/23 16:24:18.320413 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.info'
2024/09/23 16:24:18.320482 [1] processing update request (1 requests)
2024/09/23 16:24:18.320554 [1] adding new request for key: 'docker.images'
2024/09/23 16:24:18.320604 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.images'
2024/09/23 16:24:18.320665 [1] processing update request (1 requests)
2024/09/23 16:24:18.320744 [1] adding new request for key: 'net.if.out["ens192"]'
2024/09/23 16:24:18.320796 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.out["ens192"]'
2024/09/23 16:24:18.320863 executing direct exporter task for key 'net.if.out["ens192"]'
2024/09/23 16:24:18.320960 executed direct exporter task for key 'net.if.out[[ens192 errors]]'
2024/09/23 16:24:18.321386 executing direct exporter task for key 'docker.images'
2024/09/23 16:24:18.321581 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"0"}]}' to '10.25.172.41'
2024/09/23 16:24:18.321966 executing direct exporter task for key 'docker.info'
2024/09/23 16:24:18.325434 executing direct exporter task for key 'net.if.in["ens192",errors]'
2024/09/23 16:24:18.326313 executed direct exporter task for key 'net.if.in[[ens192 errors]]'
2024/09/23 16:24:18.326729 executing direct exporter task for key 'docker.container_info["/gitlab-runner",full]'
2024/09/23 16:24:18.327267 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"0"}]}' to '10.25.172.41'
2024/09/23 16:24:18.327926 executing direct exporter task for key 'net.if.in["ens192",dropped]'
2024/09/23 16:24:18.328659 executed direct exporter task for key 'net.if.in[[ens192 dropped]]'
2024/09/23 16:24:18.329042 executed direct exporter task for key 'net.if.out[[ens192]]'
2024/09/23 16:24:18.330021 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"0"}]}' to '10.25.172.41'
2024/09/23 16:24:18.330440 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"83273833474"}]}' to '10.25.172.41'
2024/09/23 16:24:18.331010 executed direct exporter task for key 'docker.container_info[[/gitlab-runner full]]'
2024/09/23 16:24:18.332030 executed direct exporter task for key 'docker.images[[]]'
2024/09/23 16:24:18.332324 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"Id\":\"13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190\",\"Created\":\"2024-09-23T08:18:49.408653244Z\",\"Path\":\"/usr/bin/dumb-init\",\"Args\":[\"/entrypoint\",\"run\",\"--user=gitlab-runner\",\"--working-directory=/home/gitlab-runner\"],\"State\":{\"Status\":\"running\",\"Running\":true,\"Paused\":false,\"Restarting\":false,\"OOMKilled\":false,\"Dead\":false,\"Pid\":2462560,\"ExitCode\":0,\"Error\":\"\",\"StartedAt\":\"2024-09-23T08:18:50.041230989Z\",\"FinishedAt\":\"0001-01-01T00:00:00Z\"},\"Image\":\"sha256:09c48aa4008e6093efd97f36b5a8489f46b83ae13d11ace546ac0c7b2e7214d0\",\"ResolvConfPath\":\"/var/lib/docker/containers/13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190/resolv.conf\",\"HostnamePath\":\"/var/lib/docker/containers/13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190/hostname\",\"HostsPath\":\"/var/lib/docker/containers/13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190/hosts\",\"LogPath\":\"/var/lib/docker/containers/13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190/13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190-json.log\",\"Name\":\"/gitlab-runner\",\"RestartCount\":0,\"Driver\":\"overlay2\",\"Platform\":\"linux\",\"MountLabel\":\"\",\"ProcessLabel\":\"\",\"AppArmorProfile\":\"docker-default\",\"ExecIDs\":null,\"HostConfig\":{\"Binds\":[\"gitlab-runner-config:/etc/gitlab-runner\",\"/var/run/docker.sock:/var/run/docker.sock\"],\"ContainerIDFile\":\"\",\"LogConfig\":{\"Type\":\"json-file\",\"Config\":{}},\"NetworkMode\":\"bridge\",\"PortBindings\":{},\"RestartPolicy\":{\"Name\":\"always\",\"MaximumRetryCount\":0},\"AutoRemove\":false,\"VolumeDriver\":\"\",\"VolumesFrom\":null,\"ConsoleSize\":[96,422],\"CapAdd\":null,\"CapDrop\":null,\"CgroupnsMode\":\"private\",\"Dns\":[],\"DnsOptions\":[],\"DnsSearch\":[],\"ExtraHosts\":null,\"GroupAdd\":null,\"IpcMode\":\"private\",\"Cgroup\":\"\",\"Links\":null,\"OomScoreAdj\":0,\"PidMode\":\"\",\"Privileged\":false,\"PublishAllPorts\":false,\"ReadonlyRootfs\":false,\"SecurityOpt\":null,\"UTSMode\":\"\",\"UsernsMode\":\"\",\"ShmSize\":67108864,\"Runtime\":\"runc\",\"Isolation\":\"\",\"CpuShares\":0,\"Memory\":0,\"NanoCpus\":0,\"CgroupParent\":\"\",\"BlkioWeight\":0,\"BlkioWeightDevice\":[],\"BlkioDeviceReadBps\":[],\"BlkioDeviceWriteBps\":[],\"BlkioDeviceReadIOps\":[],\"BlkioDeviceWriteIOps\":[],\"CpuPeriod\":0,\"CpuQuota\":0,\"CpuRealtimePeriod\":0,\"CpuRealtimeRuntime\":0,\"CpusetCpus\":\"\",\"CpusetMems\":\"\",\"Devices\":[],\"DeviceCgroupRules\":null,\"DeviceRequests\":null,\"MemoryReservation\":0,\"MemorySwap\":0,\"MemorySwappiness\":null,\"OomKillDisable\":null,\"PidsLimit\":null,\"Ulimits\":[],\"CpuCount\":0,\"CpuPercent\":0,\"IOMaximumIOps\":0,\"IOMaximumBandwidth\":0,\"MaskedPaths\":[\"/proc/asound\",\"/proc/acpi\",\"/proc/kcore\",\"/proc/keys\",\"/proc/latency_stats\",\"/proc/timer_list\",\"/proc/timer_stats\",\"/proc/sched_debug\",\"/proc/scsi\",\"/sys/firmware\",\"/sys/devices/virtual/powercap\"],\"ReadonlyPaths\":[\"/proc/bus\",\"/proc/fs\",\"/proc/irq\",\"/proc/sys\",\"/proc/sysrq-trigger\"]},\"GraphDriver\":{\"Data\":{\"LowerDir\":\"/var/lib/docker/overlay2/a93a8a2f2fc21e48b3d8a6b2c6c6251aae13458430c014202792238c86cfa19e-init/diff:/var/lib/docker/overlay2/2bcac98e1f387269f2726271126f8abb7b6ae2d803bd63371c8105a1d4b0da01/diff:/var/lib/docker/overlay2/ae99bb3ac517f9301ab02eb1dfb1ee1223643099a53518c28fd5f6095881e411/diff:/var/lib/docker/overlay2/20bf6b53f4f4bec429e68b943a7635c8962bc83ab3b693817e2a47a7651ab90f/diff\",\"MergedDir\":\"/var/lib/docker/overlay2/a93a8a2f2fc21e48b3d8a6b2c6c6251aae13458430c014202792238c86cfa19e/merged\",\"UpperDir\":\"/var/lib/docker/overlay2/a93a8a2f2fc21e48b3d8a6b2c6c6251aae13458430c014202792238c86cfa19e/diff\",\"WorkDir\":\"/var/lib/docker/overlay2/a93a8a2f2fc21e48b3d8a6b2c6c6251aae13458430c014202792238c86cfa19e/work\"},\"Name\":\"overlay2\"},\"Mounts\":[{\"Type\":\"volume\",\"Name\":\"gitlab-runner-config\",\"Source\":\"/var/lib/docker/volumes/gitlab-runner-config/_data\",\"Destination\":\"/etc/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\"},{\"Type\":\"bind\",\"Source\":\"/var/run/docker.sock\",\"Destination\":\"/var/run/docker.sock\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"rprivate\"},{\"Type\":\"volume\",\"Name\":\"a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92\",\"Source\":\"/var/lib/docker/volumes/a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92/_data\",\"Destination\":\"/home/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"\"}],\"Config\":{\"Hostname\":\"1cc4202d4709\",\"Domainname\":\"\",\"User\":\"\",\"AttachStdin\":false,\"AttachStdout\":false,\"AttachStderr\":false,\"Tty\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Env\":[\"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\"],\"Cmd\":[\"run\",\"--user=gitlab-runner\",\"--working-directory=/home/gitlab-runner\"],\"Image\":\"gitlab/gitlab-runner:latest\",\"Volumes\":{\"/etc/gitlab-runner\":{},\"/home/gitlab-runner\":{}},\"WorkingDir\":\"\",\"Entrypoint\":[\"/usr/bin/dumb-init\",\"/entrypoint\"],\"OnBuild\":null,\"Labels\":{\"org.opencontainers.image.ref.name\":\"ubuntu\",\"org.opencontainers.image.version\":\"20.04\"},\"StopSignal\":\"SIGQUIT\"},\"NetworkSettings\":{\"Bridge\":\"\",\"SandboxID\":\"9c28c1c99d68f53405517aab5b3089f08a84f2e2c48595c36d0957e9991fcbfa\",\"SandboxKey\":\"/var/run/docker/netns/9c28c1c99d68\",\"Ports\":{},\"HairpinMode\":false,\"LinkLocalIPv6Address\":\"\",\"LinkLocalIPv6PrefixLen\":0,\"SecondaryIPAddresses\":null,\"SecondaryIPv6Addresses\":null,\"EndpointID\":\"54e990608fec7cc9f9561f484f0f15d8cf1efd3bdc93f0332d6b19e5f796f647\",\"Gateway\":\"172.17.0.1\",\"GlobalIPv6Address\":\"\",\"GlobalIPv6PrefixLen\":0,\"IPAddress\":\"172.17.0.2\",\"IPPrefixLen\":16,\"IPv6Gateway\":\"\",\"MacAddress\":\"02:42:ac:11:00:02\",\"Networks\":{\"bridge\":{\"IPAMConfig\":null,\"Links\":null,\"Aliases\":null,\"MacAddress\":\"02:42:ac:11:00:02\",\"NetworkID\":\"6394673f4ff60fdede8bbce433b7d8bba237e72e19ee16905ae8bd991ce6ee60\",\"EndpointID\":\"54e990608fec7cc9f9561f484f0f15d8cf1efd3bdc93f0332d6b19e5f796f647\",\"Gateway\":\"172.17.0.1\",\"IPAddress\":\"172.17.0.2\",\"IPPrefixLen\":16,\"IPv6Gateway\":\"\",\"GlobalIPv6Address\":\"\",\"GlobalIPv6PrefixLen\":0,\"DriverOpts\":null,\"DNSNames\":null}}}}\n"}]}' to '10.25.172.41'
2024/09/23 16:24:18.333294 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"[{\"Id\":\"sha256:f4fde5dba450331f0f40ddceb7a345a12e143c2c072d063b03a7b1df3b482c20\",\"RepoTags\":[\"adform-webform:latest\"],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1727092115,\"Size\":1196879951,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:b0d396db2108c7e1763817938be589eea852e74898f7da675cd127aa05de7757\",\"RepoTags\":[\"registry.gitlab.com/gitlab-org/gitlab-runner/gitlab-runner-helper:x86_64-v17.4.0\"],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1727079791,\"Size\":68497806,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:09c48aa4008e6093efd97f36b5a8489f46b83ae13d11ace546ac0c7b2e7214d0\",\"RepoTags\":[\"gitlab/gitlab-runner:latest\"],\"RepoDigests\":[\"gitlab/gitlab-runner@sha256:631812a07dad6dba300f3f06afb60be684b6c2efb845b32244047d5799240e77\"],\"Containers\":-1,\"Created\":1726749639,\"Size\":798118644,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:2a7a00805182656e10a34be0146300803bf3d8ddaa9fb7305848f90d15b52afb\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726576058,\"Size\":1196879888,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:00f4299046422d22b261db9654182bad2844322a7d34fc6f04845166b544d8b4\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726475270,\"Size\":1196879721,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:a330241c6dfcd40ffc41549ccec35fe3bdff0e007e7f5213fc870c0ca5bf72f8\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726154042,\"Size\":1196849808,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:f0190b296a6d9e14ebcf6b217c77a393ade9574a01fb7cef09442649494e152d\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726153598,\"Size\":1196849781,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:37fd842ce13e6cbb5154e532ab933e2a423044eec9bf199390084d2c06759321\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726152861,\"Size\":1196849608,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:4e1969850912cce5dd9e091319997653312f230981f853ea3344b1854b0204e5\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726152134,\"Size\":1196849391,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:64ffcce20400338a75ae72ef037ed78a2857a05579ebb912a7f211342bab73c2\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726151839,\"Size\":1196849392,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:4c950507e526d639c5f91687f1edab5b9584c28d162aa2471e1af43ae299d8b2\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726151407,\"Size\":1196849390,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:fe179dbcf9edf6b3e2fd5f3b1f981027d79f5000b5ab16fc5ecb9bbca8146ed0\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726140451,\"Size\":1196849412,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:9a8d49acf56d6651f4ed72304776aaf20603170a0b3df900a9b0c9bd4c14a371\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1726139024,\"Size\":1196849353,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:b215e4a7f08e296fcf3739697c8467bec878bcb02aed4a262db52e11b928ba9d\",\"RepoTags\":[],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1725974447,\"Size\":1196628871,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:ea2ebd905ab246ece277be25520ca0cfe82758b3d2b369e2fd69b374c1d6c7fa\",\"RepoTags\":[\"python:3\"],\"RepoDigests\":[\"python@sha256:4c3ced72a5b1cf46e72dfddc1eb308740a8f94c4acd8c80334799361e520e91b\",\"python@sha256:7859853e7607927aa1d1b1a5a2f9e580ac90c2b66feeb1b77da97fed03b1ccbe\"],\"Containers\":-1,\"Created\":1725902165,\"Size\":1013190869,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:85dc94c68d9b63f47557c19e09cd5839d306e707f7e965fe185486806cd72f08\",\"RepoTags\":[],\"RepoDigests\":[\"python@sha256:73840b2eacd375e9ab38d65c5ccca1f98524cabccbdc4f9d0932a55d1967a1ab\",\"python@sha256:9767f7e7c8326e565bcca22b5a2ccbe3440045bbdae0e68072562a3a3e56499b\",\"python@sha256:fcad5ffb670a9f1edc5cc232b2b321e617aaaae1a22c54242964178e408e0057\"],\"Containers\":-1,\"Created\":1725900414,\"Size\":1013171519,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:e124c170392e767f8278d6e4039203d84283abf0338789bccbeec73b94738611\",\"RepoTags\":[\"registry.gitlab.com/gitlab-org/gitlab-runner/gitlab-runner-helper:x86_64-v17.3.1\"],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1725888196,\"Size\":68468759,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:7f173d068b5310211101dd7a6c90c5ce633f9c3faf5455a5afc6df8f132d339e\",\"RepoTags\":[\"instrumentisto/rsync-ssh:latest\"],\"RepoDigests\":[\"instrumentisto/rsync-ssh@sha256:4be6ddee68294f4ab97e2a4bfa78d21e3809354ec35019c97e4ca6ba52b90812\"],\"Containers\":-1,\"Created\":1725873429,\"Size\":14645154,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:61529e94ffe8f1e3f6bfc4f37477482c14ac9b21509db18668e233a3a0792d91\",\"RepoTags\":[\"netboxcommunity/netbox:v4.0-2.9.1\"],\"RepoDigests\":[\"netboxcommunity/netbox@sha256:619f123f65cb747dd5acac56283506ca9a82107bac27475fa7176e432e403877\"],\"Containers\":-1,\"Created\":1725382381,\"Size\":686127280,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:14c2e911668b68b2bb91d59187946db8470753dc7ab5b55af9e5c943ec8b15e9\",\"RepoTags\":[],\"RepoDigests\":[\"gitlab/gitlab-runner@sha256:b1b483cf467f00aeb6850a8429a0677efa4704c166ac6f664ff5f8c7c65f1c8d\"],\"Containers\":-1,\"Created\":1724260255,\"Size\":773006817,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:b3c3467dc55c9e34380e6802d7c6c0b5af0088a738795553b1ba7ec5d78f0f79\",\"RepoTags\":[\"gitlab/gitlab-ce:latest\"],\"RepoDigests\":[\"gitlab/gitlab-ce@sha256:6f2ab9c42cef6b8058ef45042ce33a4505a0a9ac1a8d9ed85016ceca743dd01d\"],\"Containers\":-1,\"Created\":1724188463,\"Size\":3026865380,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:8c93ef98899116c5894541768dfab8a4f8ac03ae6c4bd0ccb2593439598a99e9\",\"RepoTags\":[\"postgres:16-alpine\"],\"RepoDigests\":[\"postgres@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf\"],\"Containers\":-1,\"Created\":1723137628,\"Size\":244933611,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:60c9611c542815b9a47885d70682e5dd290ac005737b07cba210aee323317575\",\"RepoTags\":[\"ad-form:latest\"],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1722590789,\"Size\":1195520789,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:da7b3f96549f51221ac02ad16251b3d0df33bbc4490971b48348fc87eadc4a77\",\"RepoTags\":[\"redis:alpine\"],\"RepoDigests\":[\"redis@sha256:eaea8264f74a95ea9a0767c794da50788cbd9cf5223951674d491fa1b3f4f2d2\"],\"Containers\":-1,\"Created\":1722239946,\"Size\":41213744,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:7d06252fad43690f61cbb858628b933fd85f048aaba4c05e577274b2c77cd7cb\",\"RepoTags\":[\"redis:7-alpine\"],\"RepoDigests\":[\"redis@sha256:c35af3bbcef51a62c8bae5a9a563c6f1b60d7ebaea4cb5a3ccbcc157580ae098\"],\"Containers\":-1,\"Created\":1722239946,\"Size\":41195030,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:28147ecda6596be570548a7f81be5bc8eb487a3e3a7d6dca8595b612db1a92d5\",\"RepoTags\":[\"jc21/nginx-proxy-manager:latest\"],\"RepoDigests\":[\"jc21/nginx-proxy-manager@sha256:5bd2aae54ac0b6f4ef6777143ab736baf5366807894a4c7fca7bfa2fbaf1489c\"],\"Containers\":-1,\"Created\":1719834230,\"Size\":1089116073,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:55b523bfd9ebdacfe9083e3ed9d01d7fed8e4208b65ca5a3b425f10454375f18\",\"RepoTags\":[\"lscr.io/linuxserver/netbootxyz:latest\"],\"RepoDigests\":[\"lscr.io/linuxserver/netbootxyz@sha256:dce6b2c729611f1090f2e6479b764d98aef24cc340d018d923fa6678fcbf330e\"],\"Containers\":-1,\"Created\":1719024718,\"Size\":101461312,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:2e4d49c10f9142b30bb5001e8a1ec2e3b788e4b162b86d910d16c55511edae79\",\"RepoTags\":[\"passcore:latest\"],\"RepoDigests\":[],\"Containers\":-1,\"Created\":1718693862,\"Size\":220315299,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:c95fec176b45c8c330db67aef508f70e8d0b3aa28deae1055aa0a26e93141d63\",\"RepoTags\":[\"public.ecr.aws/zinclabs/openobserve:latest\"],\"RepoDigests\":[\"public.ecr.aws/zinclabs/openobserve@sha256:35b3da31658ee62679db4e560a3e78c484a9ce55fbfb6382570d199898f135d7\"],\"Containers\":-1,\"Created\":1717418847,\"Size\":164733844,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:7d6785268b11fcb87e95e3da997bdbbeb6a8f48064abb56021923d20c27e819e\",\"RepoTags\":[\"portainer/portainer-ee:latest\"],\"RepoDigests\":[\"portainer/portainer-ee@sha256:0aa305da72738d9f90a209bf74bdc74172004690fa298f52d5f92dd065f26aea\"],\"Containers\":-1,\"Created\":1713734957,\"Size\":322222528,\"VirtualSize\":0,\"SharedSize\":-1},{\"Id\":\"sha256:b3546b6381e597392df651d4efca54536ffc8276bedbdc9383cd19533b425f84\",\"RepoTags\":[\"ziggyds/iventoy:latest\"],\"RepoDigests\":[\"ziggyds/iventoy@sha256:0e1d4a520cd761559aead3bfecb8c46d579aa6e97e81bc4895fe246e31e62746\"],\"Containers\":-1,\"Created\":1712106934,\"Size\":104638955,\"VirtualSize\":0,\"SharedSize\":-1}]"}]}' to '10.25.172.41'
2024/09/23 16:24:18.348939 executed direct exporter task for key 'docker.info[[]]'
2024/09/23 16:24:18.349304 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"Id\":\"a05da143-3d08-4c12-8e9c-6e411c5385ae\",\"Containers\":13,\"ContainersRunning\":10,\"ContainersPaused\":0,\"ContainersStopped\":3,\"Images\":31,\"Driver\":\"overlay2\",\"MemoryLimit\":true,\"SwapLimit\":true,\"KernelMemory\":false,\"KernelMemoryTCP\":false,\"CpuCfsPeriod\":true,\"CpuCfsQuota\":true,\"CPUShares\":true,\"CPUSet\":true,\"PidsLimit\":true,\"IPv4Forwarding\":true,\"BridgeNfIptables\":true,\"BridgeNfIP6tables\":true,\"Debug\":false,\"NFd\":669,\"OomKillDisable\":false,\"NGoroutines\":717,\"LoggingDriver\":\"json-file\",\"CgroupDriver\":\"systemd\",\"NEventsListener\":0,\"KernelVersion\":\"6.1.0-20-amd64\",\"OperatingSystem\":\"Debian GNU/Linux 12 (bookworm)\",\"OSVersion\":\"12\",\"OSType\":\"linux\",\"Architecture\":\"x86_64\",\"IndexServerAddress\":\"https://index.docker.io/v1/\",\"NCPU\":4,\"MemTotal\":33655873536,\"DockerRootDir\":\"/var/lib/docker\",\"Name\":\"by01-portainer01\",\"ExperimentalBuild\":false,\"ServerVersion\":\"26.1.3\",\"ClusterStore\":\"\",\"ClusterAdvertise\":\"\",\"DefaultRuntime\":\"runc\",\"LiveRestoreEnabled\":false,\"InitBinary\":\"docker-init\",\"SecurityOptions\":[\"name=apparmor\",\"name=seccomp,profile=builtin\",\"name=cgroupns\"],\"Warnings\":null}"}]}' to '10.25.172.41'
2024/09/23 16:24:18.813585 received passive check request: '{"request":"passive checks","data":[{"key":"docker.containers","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.813780 [1] processing update request (1 requests)
2024/09/23 16:24:18.813823 [1] adding new request for key: 'docker.containers'
2024/09/23 16:24:18.813844 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.containers'
2024/09/23 16:24:18.813922 executing direct exporter task for key 'docker.containers'
2024/09/23 16:24:18.814338 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.in[\"ens192\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.814422 received passive check request: '{"request":"passive checks","data":[{"key":"vfs.file.contents[\"/sys/class/net/ens192/operstate\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.814494 received passive check request: '{"request":"passive checks","data":[{"key":"docker.ping","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.814580 [1] processing update request (1 requests)
2024/09/23 16:24:18.814610 [1] adding new request for key: 'docker.ping'
2024/09/23 16:24:18.814628 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.ping'
2024/09/23 16:24:18.814664 executing direct exporter task for key 'docker.ping'
2024/09/23 16:24:18.814801 [1] processing update request (1 requests)
2024/09/23 16:24:18.814834 [1] adding new request for key: 'net.if.in["ens192"]'
2024/09/23 16:24:18.814852 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.in["ens192"]'
2024/09/23 16:24:18.814888 executing direct exporter task for key 'net.if.in["ens192"]'
2024/09/23 16:24:18.814931 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_stats[\"/portainer\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.815531 executed direct exporter task for key 'net.if.in[[ens192]]'
2024/09/23 16:24:18.815632 [1] processing update request (1 requests)
2024/09/23 16:24:18.815675 [1] adding new request for key: 'vfs.file.contents["/sys/class/net/ens192/operstate"]'
2024/09/23 16:24:18.815694 [1] created direct exporter task for plugin 'File' itemid:0 key 'vfs.file.contents["/sys/class/net/ens192/operstate"]'
2024/09/23 16:24:18.815732 executing direct exporter task for key 'vfs.file.contents["/sys/class/net/ens192/operstate"]'
2024/09/23 16:24:18.815836 executed direct exporter task for key 'vfs.file.contents[[/sys/class/net/ens192/operstate]]'
2024/09/23 16:24:18.815882 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"372819098135"}]}' to '10.25.172.41'
2024/09/23 16:24:18.815972 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"up"}]}' to '10.25.172.41'
2024/09/23 16:24:18.816067 received passive check request: '{"request":"passive checks","data":[{"key":"net.if.out[\"ens192\",dropped]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.816156 [1] processing update request (1 requests)
2024/09/23 16:24:18.816179 [1] adding new request for key: 'net.if.out["ens192",dropped]'
2024/09/23 16:24:18.816212 [1] created direct exporter task for plugin 'NetIf' itemid:0 key 'net.if.out["ens192",dropped]'
2024/09/23 16:24:18.816249 executing direct exporter task for key 'net.if.out["ens192",dropped]'
2024/09/23 16:24:18.816534 executed direct exporter task for key 'net.if.out[[ens192 dropped]]'
2024/09/23 16:24:18.816576 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"0"}]}' to '10.25.172.41'
2024/09/23 16:24:18.816707 executed direct exporter task for key 'docker.ping[[]]'
2024/09/23 16:24:18.816737 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"1"}]}' to '10.25.172.41'
2024/09/23 16:24:18.816841 received passive check request: '{"request":"passive checks","data":[{"key":"docker.data_usage","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.816906 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_stats[\"/gitlab-runner\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.816964 received passive check request: '{"request":"passive checks","data":[{"key":"vfs.file.contents[\"/sys/class/net/ens192/speed\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.817020 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_info[\"/proxy-manager-app-1\",full]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:18.817103 [1] processing update request (1 requests)
2024/09/23 16:24:18.817128 [1] adding new request for key: 'docker.container_info["/proxy-manager-app-1",full]'
2024/09/23 16:24:18.817145 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_info["/proxy-manager-app-1",full]'
2024/09/23 16:24:18.817183 executing direct exporter task for key 'docker.container_info["/proxy-manager-app-1",full]'
2024/09/23 16:24:18.817291 [1] processing update request (1 requests)
2024/09/23 16:24:18.817312 [1] adding new request for key: 'docker.data_usage'
2024/09/23 16:24:18.817328 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.data_usage'
2024/09/23 16:24:18.817380 executing direct exporter task for key 'docker.data_usage'
2024/09/23 16:24:18.817543 [1] processing update request (1 requests)
2024/09/23 16:24:18.817567 [1] adding new request for key: 'docker.container_stats["/gitlab-runner"]'
2024/09/23 16:24:18.817583 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_stats["/gitlab-runner"]'
2024/09/23 16:24:18.817641 executing direct exporter task for key 'docker.container_stats["/gitlab-runner"]'
2024/09/23 16:24:18.817810 [1] processing update request (1 requests)
2024/09/23 16:24:18.817833 [1] adding new request for key: 'vfs.file.contents["/sys/class/net/ens192/speed"]'
2024/09/23 16:24:18.817887 [1] created direct exporter task for plugin 'File' itemid:0 key 'vfs.file.contents["/sys/class/net/ens192/speed"]'
2024/09/23 16:24:18.817946 executing direct exporter task for key 'vfs.file.contents["/sys/class/net/ens192/speed"]'
2024/09/23 16:24:18.818045 executed direct exporter task for key 'vfs.file.contents[[/sys/class/net/ens192/speed]]'
2024/09/23 16:24:18.818153 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"10000"}]}' to '10.25.172.41'
2024/09/23 16:24:18.818672 [1] processing update request (1 requests)
2024/09/23 16:24:18.818725 [1] adding new request for key: 'docker.container_stats["/portainer"]'
2024/09/23 16:24:18.818756 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_stats["/portainer"]'
2024/09/23 16:24:18.818827 executing direct exporter task for key 'docker.container_stats["/portainer"]'
2024/09/23 16:24:18.823369 executed direct exporter task for key 'docker.container_info[[/proxy-manager-app-1 full]]'
2024/09/23 16:24:18.831945 executed direct exporter task for key 'docker.containers[[]]'
2024/09/23 16:24:18.832063 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"[{\"Id\":\"2e0e433f20cc649e18ab3533d8bccef8ec4d1ba84ee00dcd595aa4e5f2306745\",\"Image\":\"sha256:ea2ebd905ab246ece277be25520ca0cfe82758b3d2b369e2fd69b374c1d6c7fa\",\"Command\":\"sh -c 'if [ -x /usr/local/bin/bash ]; then\\n\\texec /usr/local/bin/bash \\nelif [ -x /usr/bin/bash ]; then\\n\\texec /usr/bin/bash \\nelif [ -x /bin/bash ]; then\\n\\texec /bin/bash \\nelif [ -x /usr/local/bin/sh ]; then\\n\\texec /usr/local/bin/sh \\nelif [ -x /usr/bin/sh ]; then\\n\\texec /usr/bin/sh \\nelif [ -x /bin/sh ]; then\\n\\texec /bin/sh \\nelif [ -x /busybox/sh ]; then\\n\\texec /busybox/sh \\nelse\\n\\techo shell not found\\n\\texit 1\\nfi\\n\\n'\",\"Created\":1727097797,\"State\":\"running\",\"Status\":\"Up About a minute\",\"Ports\":[],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/runner-o3wmkpq-project-3-concurrent-0-176ee4e133a41e6b-build\"],\"Mounts\":[{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Destination\":\"/builds\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Destination\":\"/cache\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"1cadfabe1298f15725b08e5064a63e1e87f9d40c129f42df0f270ffa5f5a2e13\",\"Image\":\"sha256:b0d396db2108c7e1763817938be589eea852e74898f7da675cd127aa05de7757\",\"Command\":\"/usr/bin/dumb-init /entrypoint gitlab-runner-build\",\"Created\":1727097793,\"State\":\"exited\",\"Status\":\"Exited (0) About a minute ago\",\"Ports\":[],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/runner-o3wmkpq-project-3-concurrent-0-176ee4e133a41e6b-predefined\"],\"Mounts\":[{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Destination\":\"/builds\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Destination\":\"/cache\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"68437d5947426c1a9b4995440935752408ae11abc9e91a0c920c5a1f7da151f1\",\"Image\":\"adform-webform\",\"Command\":\"docker-entrypoint.sh node build/index.js prod\",\"Created\":1727092119,\"State\":\"running\",\"Status\":\"Up About an hour\",\"Ports\":[{\"PrivatePort\":3000,\"PublicPort\":8002,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":3000,\"PublicPort\":8002,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":3002,\"PublicPort\":8003,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":3002,\"PublicPort\":8003,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/adform-webform-1\"],\"Mounts\":[{\"Name\":\"adform_data\",\"Source\":\"/var/lib/docker/volumes/adform_data/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190\",\"Image\":\"gitlab/gitlab-runner:latest\",\"Command\":\"/usr/bin/dumb-init /entrypoint run --user=gitlab-runner --working-directory=/home/gitlab-runner\",\"Created\":1727079529,\"State\":\"running\",\"Status\":\"Up 5 hours\",\"Ports\":[],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/gitlab-runner\"],\"Mounts\":[{\"Name\":\"gitlab-runner-config\",\"Source\":\"/var/lib/docker/volumes/gitlab-runner-config/_data\",\"Destination\":\"/etc/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92\",\"Source\":\"\",\"Destination\":\"/home/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"\",\"Source\":\"/var/run/docker.sock\",\"Destination\":\"/var/run/docker.sock\",\"Driver\":\"\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"}]},{\"Id\":\"2fb39dd08e014801aedbb72f72ccd97412f2a4be1034558ef23e9e33edfdab55\",\"Image\":\"gitlab/gitlab-ce:latest\",\"Command\":\"/assets/wrapper\",\"Created\":1726051261,\"State\":\"running\",\"Status\":\"Up 12 days (healthy)\",\"Ports\":[{\"PrivatePort\":22,\"PublicPort\":2424,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":22,\"PublicPort\":2424,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":443,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":80,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":9080,\"PublicPort\":9080,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":9080,\"PublicPort\":9080,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/gitlab\"],\"Mounts\":[{\"Name\":\"gitlab_config\",\"Source\":\"/var/lib/docker/volumes/gitlab_config/_data\",\"Destination\":\"/etc/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"gitlab_logs\",\"Source\":\"/var/lib/docker/volumes/gitlab_logs/_data\",\"Destination\":\"/var/log/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"gitlab_data\",\"Source\":\"/var/lib/docker/volumes/gitlab_data/_data\",\"Destination\":\"/var/opt/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3\",\"Image\":\"jc21/nginx-proxy-manager:latest\",\"Command\":\"/init\",\"Created\":1724140555,\"State\":\"running\",\"Status\":\"Up 4 weeks\",\"Ports\":[{\"PrivatePort\":443,\"PublicPort\":443,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":443,\"PublicPort\":443,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":80,\"PublicPort\":80,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":80,\"PublicPort\":80,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":81,\"PublicPort\":81,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":81,\"PublicPort\":81,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/proxy-manager-app-1\"],\"Mounts\":[{\"Name\":\"\",\"Source\":\"/data/compose/1/v1/data\",\"Destination\":\"/data\",\"Driver\":\"\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"},{\"Name\":\"\",\"Source\":\"/data/compose/1/v1/letsencrypt\",\"Destination\":\"/etc/letsencrypt\",\"Driver\":\"\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"}]},{\"Id\":\"9385bf4c45b276f7132e6be83538e0ac928cca5f25c70a6badac3940ab7c9cc7\",\"Image\":\"redis:alpine\",\"Command\":\"docker-entrypoint.sh '--save 60 1' '--loglevel warning'\",\"Created\":1723566460,\"State\":\"running\",\"Status\":\"Up 5 weeks\",\"Ports\":[{\"PrivatePort\":6379,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/adform-redis-1\"],\"Mounts\":[{\"Name\":\"adform_redis\",\"Source\":\"/var/lib/docker/volumes/adform_redis/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"8f321e9a17192497906a507e651a71cd128416335bbb5d8bfd6914c7683e466e\",\"Image\":\"public.ecr.aws/zinclabs/openobserve:latest\",\"Command\":\"/openobserve\",\"Created\":1723446534,\"State\":\"running\",\"Status\":\"Up 6 weeks\",\"Ports\":[{\"PrivatePort\":5080,\"PublicPort\":5080,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5080,\"PublicPort\":5080,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"udp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/openobserve\"],\"Mounts\":[{\"Name\":\"openobserve_data\",\"Source\":\"/var/lib/docker/volumes/openobserve_data/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"de78172a69e625723ede4eeada4131b634cca45b801a686416957390bd33685d\",\"Image\":\"ad-form:latest\",\"Command\":\"docker-entrypoint.sh node build/index.js prod\",\"Created\":1722591793,\"State\":\"exited\",\"Status\":\"Exited (137) 7 weeks ago\",\"Ports\":[],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/ADForm\"],\"Mounts\":[{\"Name\":\"adform_data\",\"Source\":\"/var/lib/docker/volumes/adform_data/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"e7e8bb2d8d58ed4152c67475df36a1e4d8299e56970b7cad74e833f4aee577f4\",\"Image\":\"ziggyds/iventoy:latest\",\"Command\":\"/bin/sh -c /entrypoint.sh\",\"Created\":1719395901,\"State\":\"running\",\"Status\":\"Up 7 weeks\",\"Ports\":[{\"PrivatePort\":16000,\"PublicPort\":16000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":16000,\"PublicPort\":16000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":26000,\"PublicPort\":26000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":26000,\"PublicPort\":26000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":67,\"PublicPort\":67,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":67,\"PublicPort\":67,\"Type\":\"udp\",\"IP\":\"::\"},{\"PrivatePort\":69,\"PublicPort\":69,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":69,\"PublicPort\":69,\"Type\":\"udp\",\"IP\":\"::\"},{\"PrivatePort\":10809,\"PublicPort\":10809,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":10809,\"PublicPort\":10809,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/iventoy\"],\"Mounts\":[{\"Name\":\"iventoy_config\",\"Source\":\"/var/lib/docker/volumes/iventoy_config/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"iventoy_isos\",\"Source\":\"/var/lib/docker/volumes/iventoy_isos/_data\",\"Destination\":\"/app/iso\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"iventoy_logs\",\"Source\":\"/var/lib/docker/volumes/iventoy_logs/_data\",\"Destination\":\"/app/log\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"6a55df09546c1034ec31e38142629a3a229306f228172c47eeef6a814f6fe528\",\"Image\":\"lscr.io/linuxserver/netbootxyz:latest\",\"Command\":\"/init\",\"Created\":1719392183,\"State\":\"exited\",\"Status\":\"Exited (0) 2 months ago\",\"Ports\":[],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/netbootxyz\"],\"Mounts\":[{\"Name\":\"netbootxyz_netbootxyz_assets\",\"Source\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_assets/_data\",\"Destination\":\"/assets\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"netbootxyz_netbootxyz_config\",\"Source\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_config/_data\",\"Destination\":\"/config\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"1f8ad0b8f0e077305310f8a00d1c407622057627303055042970c86846c779d7\",\"Image\":\"passcore:latest\",\"Command\":\"dotnet Unosquare.PassCore.Web.dll\",\"Created\":1718693905,\"State\":\"running\",\"Status\":\"Up 8 weeks\",\"Ports\":[{\"PrivatePort\":80,\"PublicPort\":8001,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":80,\"PublicPort\":8001,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/Passcore\"],\"Mounts\":[]},{\"Id\":\"c89c6bcf0c3f188e50a54fe9a96574121b633c87d454c7016de9ce166df65284\",\"Image\":\"portainer/portainer-ee:latest\",\"Command\":\"/portainer\",\"Created\":1716202323,\"State\":\"running\",\"Status\":\"Up 8 weeks\",\"Ports\":[{\"PrivatePort\":8000,\"PublicPort\":8000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":8000,\"PublicPort\":8000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":9000,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":9443,\"PublicPort\":9443,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":9443,\"PublicPort\":9443,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":0,\"Names\":[\"/portainer\"],\"Mounts\":[{\"Name\":\"portainer_data\",\"Source\":\"/var/lib/docker/volumes/portainer_data/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"\",\"Source\":\"/var/run/docker.sock\",\"Destination\":\"/var/run/docker.sock\",\"Driver\":\"\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"}]}]"}]}' to '10.25.172.41'
2024/09/23 16:24:18.833133 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"Id\":\"a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3\",\"Created\":\"2024-08-20T07:55:55.721676065Z\",\"Path\":\"/init\",\"Args\":[],\"State\":{\"Status\":\"running\",\"Running\":true,\"Paused\":false,\"Restarting\":false,\"OOMKilled\":false,\"Dead\":false,\"Pid\":2131951,\"ExitCode\":0,\"Error\":\"\",\"StartedAt\":\"2024-08-20T07:55:56.581221325Z\",\"FinishedAt\":\"0001-01-01T00:00:00Z\"},\"Image\":\"sha256:28147ecda6596be570548a7f81be5bc8eb487a3e3a7d6dca8595b612db1a92d5\",\"ResolvConfPath\":\"/var/lib/docker/containers/a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3/resolv.conf\",\"HostnamePath\":\"/var/lib/docker/containers/a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3/hostname\",\"HostsPath\":\"/var/lib/docker/containers/a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3/hosts\",\"LogPath\":\"/var/lib/docker/containers/a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3/a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3-json.log\",\"Name\":\"/proxy-manager-app-1\",\"RestartCount\":0,\"Driver\":\"overlay2\",\"Platform\":\"linux\",\"MountLabel\":\"\",\"ProcessLabel\":\"\",\"AppArmorProfile\":\"docker-default\",\"ExecIDs\":null,\"HostConfig\":{\"Binds\":[\"/data/compose/1/v1/data:/data:rw\",\"/data/compose/1/v1/letsencrypt:/etc/letsencrypt:rw\"],\"ContainerIDFile\":\"\",\"LogConfig\":{\"Type\":\"json-file\",\"Config\":{}},\"NetworkMode\":\"proxy-manager_default\",\"PortBindings\":{\"443/tcp\":[{\"HostIp\":\"\",\"HostPort\":\"443\"}],\"80/tcp\":[{\"HostIp\":\"\",\"HostPort\":\"80\"}],\"81/tcp\":[{\"HostIp\":\"\",\"HostPort\":\"81\"}]},\"RestartPolicy\":{\"Name\":\"unless-stopped\",\"MaximumRetryCount\":0},\"AutoRemove\":false,\"VolumeDriver\":\"\",\"VolumesFrom\":null,\"ConsoleSize\":[0,0],\"CapAdd\":null,\"CapDrop\":null,\"CgroupnsMode\":\"private\",\"Dns\":[],\"DnsOptions\":[],\"DnsSearch\":[],\"ExtraHosts\":[],\"GroupAdd\":null,\"IpcMode\":\"private\",\"Cgroup\":\"\",\"Links\":null,\"OomScoreAdj\":0,\"PidMode\":\"\",\"Privileged\":false,\"PublishAllPorts\":false,\"ReadonlyRootfs\":false,\"SecurityOpt\":null,\"UTSMode\":\"\",\"UsernsMode\":\"\",\"ShmSize\":67108864,\"Runtime\":\"runc\",\"Isolation\":\"\",\"CpuShares\":0,\"Memory\":0,\"NanoCpus\":0,\"CgroupParent\":\"\",\"BlkioWeight\":0,\"BlkioWeightDevice\":null,\"BlkioDeviceReadBps\":null,\"BlkioDeviceWriteBps\":null,\"BlkioDeviceReadIOps\":null,\"BlkioDeviceWriteIOps\":null,\"CpuPeriod\":0,\"CpuQuota\":0,\"CpuRealtimePeriod\":0,\"CpuRealtimeRuntime\":0,\"CpusetCpus\":\"\",\"CpusetMems\":\"\",\"Devices\":null,\"DeviceCgroupRules\":null,\"DeviceRequests\":null,\"MemoryReservation\":0,\"MemorySwap\":0,\"MemorySwappiness\":null,\"OomKillDisable\":null,\"PidsLimit\":null,\"Ulimits\":null,\"CpuCount\":0,\"CpuPercent\":0,\"IOMaximumIOps\":0,\"IOMaximumBandwidth\":0,\"MaskedPaths\":[\"/proc/asound\",\"/proc/acpi\",\"/proc/kcore\",\"/proc/keys\",\"/proc/latency_stats\",\"/proc/timer_list\",\"/proc/timer_stats\",\"/proc/sched_debug\",\"/proc/scsi\",\"/sys/firmware\",\"/sys/devices/virtual/powercap\"],\"ReadonlyPaths\":[\"/proc/bus\",\"/proc/fs\",\"/proc/irq\",\"/proc/sys\",\"/proc/sysrq-trigger\"]},\"GraphDriver\":{\"Data\":{\"LowerDir\":\"/var/lib/docker/overlay2/d4efa95cfc131dd3fc87919506edb3ee77b527a58a0a6236b8ea31af4da94bd3-init/diff:/var/lib/docker/overlay2/f76a13997b02b705c9ff64c4d85ee7c6c39e05b75cbaba3e986b8c212ecd97f5/diff:/var/lib/docker/overlay2/81d0ce82677eb254a0954971f244d13cf3368271c042ff61c2ab1ca3f72fb348/diff:/var/lib/docker/overlay2/94813df7e07cdf9a5045acf4977a0468c1437e58af6d59f38e1d2fe56c3cfc38/diff:/var/lib/docker/overlay2/f03d5d9bbd7e13e2238ec86e7527f38c78c44d3e2c85e37a190c14b07b7175ec/diff:/var/lib/docker/overlay2/a9474bcb8b7a6f9bacf6f57900408788e2d2f3c84b4ea1d05976cae6638a7317/diff:/var/lib/docker/overlay2/11f463160e71e452f667426ab384bcb92851dcb3b68b96eaa29912d68346276d/diff:/var/lib/docker/overlay2/9635a0790b208e99da756acf13b97c1e5df34cf3b6aeacc3b38a8215ef19f363/diff:/var/lib/docker/overlay2/ece4aa704a71b770c879e8278a2ce8745c27ee55d303427cd184857d5f9f94c6/diff:/var/lib/docker/overlay2/8e7184798ea6583cad8b6be28c4e075c776a3c87b7a4e6005abde1693f439973/diff:/var/lib/docker/overlay2/0aa1ad74e55d0bc8111573a2a402c162b87b2d63beb9c1e2a9403bf4317292f0/diff:/var/lib/docker/overlay2/5d1797b736e9c3218fd9e91766f90a4af8354bbd76c0e8bf2db97e93263e0343/diff:/var/lib/docker/overlay2/1e8fb949f28b7d1e60e3453e5ae943103d4a9334267f4c8a1c8de127c3eba8dd/diff:/var/lib/docker/overlay2/c2857f104dceb59214e6f7402552e5c3e19e4c5a81f567aee5005fe1828b027c/diff:/var/lib/docker/overlay2/a42e6331fe02f387f3d9cc30d2ee2d8c9ebad6f80e296a946742a93cdd76927b/diff:/var/lib/docker/overlay2/17955e4e288cac215858065b39808ef430ed2c2974de0d1093fefc6d7e3b4f3e/diff:/var/lib/docker/overlay2/68c5df455c548cb9197b68d240cb683d3a9d4cfdd1596061c3ceada6a3c0c7bd/diff:/var/lib/docker/overlay2/ca8aac136b6dd9b8a793b9b086fe2371722d2b5438ce18171352e0cc6528d8d9/diff:/var/lib/docker/overlay2/f7554b13d2ff77df29bc7956c7da9a366b650ff0a4bf7a15d56f448690d750b1/diff:/var/lib/docker/overlay2/5bcc8513784c907b8d3bb6538e64542c22592e83766306a0eb38db7fe5bab21b/diff:/var/lib/docker/overlay2/5507005d308676fd4d17b031983875fe663c34ccb01b48a1eb76f2e0ce91344d/diff:/var/lib/docker/overlay2/71eb9924cc1f837f20828b749a5c2153c213fde8f29ce1d56fcf67af8dd7e991/diff:/var/lib/docker/overlay2/158c6b96884ddf1167816b1be99b0ca607e70f48fbf242e82232b4a17906ea56/diff:/var/lib/docker/overlay2/26dc22b5f960577b355f37c8515f7cecc8a7a18b51e054c5479c532c441db668/diff:/var/lib/docker/overlay2/492c75e68c252c76e7a147bbf46903a530b5aced20e54c9c7700af734cbe6acb/diff:/var/lib/docker/overlay2/8fb7ad562a4b6343bebd92705e30cabd5179240a12b4adeefcfa6b3650486c96/diff:/var/lib/docker/overlay2/a7cc99f1604be3f4c1aefe3f0c021a6e263bdb228e503d9c8860036baca7ab7b/diff:/var/lib/docker/overlay2/192a166208fe037948df1531dfeb71bedec220c8fc00687dbf7e8b24a0af171a/diff:/var/lib/docker/overlay2/29ce3462affd2de2719e87708d73efca25fd3b953c76b348ecff4828de256bc9/diff:/var/lib/docker/overlay2/2bf6fd137bb020c5256408ae8b5da541fe5f40b1ed97ec49ac6b548e08528f67/diff:/var/lib/docker/overlay2/7a37d1ba3a8390e1da9785f0b326b731d65c40e2c27fa0e1d7f5b3a597377f99/diff:/var/lib/docker/overlay2/363fb3ef64656e19c085f37e6b36d905655d3cdbfbefbea0566240e13f38c893/diff:/var/lib/docker/overlay2/348a0b008d9336aefaf4d319e8e264f335a92d6543cc4374e8c735f60658a2d8/diff:/var/lib/docker/overlay2/79dc4663e710fd3a842290e191ee1c081bc3718bd12270df626e143feeeac853/diff\",\"MergedDir\":\"/var/lib/docker/overlay2/d4efa95cfc131dd3fc87919506edb3ee77b527a58a0a6236b8ea31af4da94bd3/merged\",\"UpperDir\":\"/var/lib/docker/overlay2/d4efa95cfc131dd3fc87919506edb3ee77b527a58a0a6236b8ea31af4da94bd3/diff\",\"WorkDir\":\"/var/lib/docker/overlay2/d4efa95cfc131dd3fc87919506edb3ee77b527a58a0a6236b8ea31af4da94bd3/work\"},\"Name\":\"overlay2\"},\"Mounts\":[{\"Type\":\"bind\",\"Source\":\"/data/compose/1/v1/data\",\"Destination\":\"/data\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\"},{\"Type\":\"bind\",\"Source\":\"/data/compose/1/v1/letsencrypt\",\"Destination\":\"/etc/letsencrypt\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\"}],\"Config\":{\"Hostname\":\"70abe8f66109\",\"Domainname\":\"\",\"User\":\"\",\"AttachStdin\":false,\"AttachStdout\":true,\"AttachStderr\":true,\"ExposedPorts\":{\"443/tcp\":{},\"80/tcp\":{},\"81/tcp\":{}},\"Tty\":false,\"OpenStdin\":false,\"StdinOnce\":false,\"Env\":[\"PATH=/opt/certbot/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\",\"SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt\",\"OPENRESTY_VERSION=1.21.4.3\",\"CROWDSEC_OPENRESTY_BOUNCER_VERSION=0.1.7\",\"CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt\",\"SUPPRESS_NO_CONFIG_WARNING=1\",\"S6_BEHAVIOUR_IF_STAGE2_FAILS=1\",\"S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0\",\"S6_FIX_ATTRS_HIDDEN=1\",\"S6_KILL_FINISH_MAXTIME=10000\",\"S6_VERBOSITY=1\",\"NODE_ENV=production\",\"NPM_BUILD_VERSION=2.11.2\",\"NPM_BUILD_COMMIT=12d77e3\",\"NPM_BUILD_DATE=2024-05-10 14:36:51 UTC\",\"NODE_OPTIONS=--openssl-legacy-provider\"],\"Cmd\":null,\"Image\":\"jc21/nginx-proxy-manager:latest\",\"Volumes\":{\"/data\":{}},\"WorkingDir\":\"/app\",\"Entrypoint\":[\"/init\"],\"OnBuild\":null,\"Labels\":{\"com.docker.compose.config-hash\":\"3a1f09c7a6f583a3eaa0f63e725fe77c28ba8e2a642d88ca9e799a3f0512962d\",\"com.docker.compose.container-number\":\"1\",\"com.docker.compose.depends_on\":\"\",\"com.docker.compose.image\":\"sha256:75f524ae8781276b3c8a5cb64e56d04680029c6ed5ae48cea41ed72e31a0020e\",\"com.docker.compose.oneoff\":\"False\",\"com.docker.compose.project\":\"proxy-manager\",\"com.docker.compose.project.config_files\":\"/data/compose/1/v1/docker-compose.yml\",\"com.docker.compose.project.working_dir\":\"/data/compose/1/v1\",\"com.docker.compose.service\":\"app\",\"com.docker.compose.version\":\"2.20.2\",\"maintainer\":\"Jamie Curnow \[email protected]\u003e\",\"org.label-schema.cmd\":\"docker run --rm -ti jc21/nginx-proxy-manager:latest\",\"org.label-schema.description\":\"Docker container for managing Nginx proxy hosts with a simple, powerful interface \",\"org.label-schema.license\":\"MIT\",\"org.label-schema.name\":\"nginx-proxy-manager\",\"org.label-schema.schema-version\":\"1.0\",\"org.label-schema.url\":\"https://github.com/jc21/nginx-proxy-manager\",\"org.label-schema.vcs-url\":\"https://github.com/jc21/nginx-proxy-manager.git\"}},\"NetworkSettings\":{\"Bridge\":\"\",\"SandboxID\":\"e3e5fa7cc6a1b9ad371cd047b091d602e9565513324e1b68decbe864951a7699\",\"SandboxKey\":\"/var/run/docker/netns/e3e5fa7cc6a1\",\"Ports\":{\"443/tcp\":[{\"HostIp\":\"0.0.0.0\",\"HostPort\":\"443\"},{\"HostIp\":\"::\",\"HostPort\":\"443\"}],\"80/tcp\":[{\"HostIp\":\"0.0.0.0\",\"HostPort\":\"80\"},{\"HostIp\":\"::\",\"HostPort\":\"80\"}],\"81/tcp\":[{\"HostIp\":\"0.0.0.0\",\"HostPort\":\"81\"},{\"HostIp\":\"::\",\"HostPort\":\"81\"}]},\"HairpinMode\":false,\"LinkLocalIPv6Address\":\"\",\"LinkLocalIPv6PrefixLen\":0,\"SecondaryIPAddresses\":null,\"SecondaryIPv6Addresses\":null,\"EndpointID\":\"\",\"Gateway\":\"\",\"GlobalIPv6Address\":\"\",\"GlobalIPv6PrefixLen\":0,\"IPAddress\":\"\",\"IPPrefixLen\":0,\"IPv6Gateway\":\"\",\"MacAddress\":\"\",\"Networks\":{\"proxy-manager_default\":{\"IPAMConfig\":null,\"Links\":null,\"Aliases\":[\"proxy-manager-app-1\",\"app\",\"70abe8f66109\"],\"MacAddress\":\"02:42:ac:12:00:02\",\"NetworkID\":\"77b81f0f769c1eab9fd756922ab771718a2436b6fa5f6b3837a91c620aa4a6bf\",\"EndpointID\":\"f557c0566603427e177fea84a1d3cff287a02816acf0619ac745a1eb5a46adc2\",\"Gateway\":\"172.18.0.1\",\"IPAddress\":\"172.18.0.2\",\"IPPrefixLen\":16,\"IPv6Gateway\":\"\",\"GlobalIPv6Address\":\"\",\"GlobalIPv6PrefixLen\":0,\"DriverOpts\":null,\"DNSNames\":[\"proxy-manager-app-1\",\"app\",\"70abe8f66109\",\"a0e4aef9d6c0\"]}}}}\n"}]}' to '10.25.172.41'
2024/09/23 16:24:19.001123 plugin Cpu: executing collector task
2024/09/23 16:24:19.716415 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_stats[\"/adform-redis-1\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:24:19.716641 [1] processing update request (1 requests)
2024/09/23 16:24:19.716689 [1] adding new request for key: 'docker.container_stats["/adform-redis-1"]'
2024/09/23 16:24:19.716719 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_stats["/adform-redis-1"]'
2024/09/23 16:24:19.716820 executing direct exporter task for key 'docker.container_stats["/adform-redis-1"]'
2024/09/23 16:24:19.846419 executed direct exporter task for key 'docker.container_stats[[/gitlab-runner]]'
2024/09/23 16:24:19.846972 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"cpu_stats\":{\"cpu_usage\":{\"total_usage\":14354208000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":4645525000,\"usage_in_usermode\":9708683000},\"system_cpu_usage\":19289363840000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"precpu_stats\":{\"cpu_usage\":{\"total_usage\":14354208000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":4645525000,\"usage_in_usermode\":9708683000},\"system_cpu_usage\":19289359820000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"memory_stats\":{\"usage\":36098048,\"max_usage\":0,\"stats\":{\"active_anon\":8192,\"active_file\":1507328,\"anon\":31309824,\"anon_thp\":25165824,\"file\":3575808,\"file_dirty\":0,\"file_mapped\":0,\"file_writeback\":0,\"inactive_anon\":31563776,\"inactive_file\":2068480,\"kernel_stack\":163840,\"pgactivate\":356,\"pgdeactivate\":0,\"pgfault\":3790,\"pglazyfree\":0,\"pglazyfreed\":0,\"pgmajfault\":30,\"pgrefill\":0,\"pgscan\":0,\"pgsteal\":0,\"shmem\":0,\"slab\":431144,\"slab_reclaimable\":217688,\"slab_unreclaimable\":213456,\"sock\":0,\"thp_collapse_alloc\":10,\"thp_fault_alloc\":13,\"unevictable\":0,\"workingset_activate\":0,\"workingset_nodereclaim\":0,\"workingset_refault\":0},\"failcnt\":0,\"limit\":33655873536,\"commitbytes\":0,\"commitpeakbytes\":0,\"privateworkingset\":0},\"pids_stats\":{\"current\":10},\"name\":\"/gitlab-runner\",\"id\":\"13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190\",\"networks\":{\"eth0\":{\"rx_bytes\":1810000,\"rx_packets\":6028,\"rx_errors\":0,\"rx_dropped\":0,\"tx_bytes\":7400834,\"tx_packets\":11613,\"tx_errors\":0,\"tx_dropped\":0,\"endpoint_id\":\"\",\"instance_id\":\"\"}}}"}]}' to '10.25.172.41'
2024/09/23 16:24:20.001248 plugin Cpu: executing collector task
2024/09/23 16:24:20.636128 executed direct exporter task for key 'docker.data_usage[[]]'
2024/09/23 16:24:20.636448 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"LayersSize\":11428376608,\"Images\":[{\"Id\":\"sha256:f4fde5dba450331f0f40ddceb7a345a12e143c2c072d063b03a7b1df3b482c20\",\"RepoTags\":[\"adform-webform:latest\"],\"RepoDigests\":null,\"Containers\":1,\"Created\":1727092115,\"Size\":1196879951,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:b0d396db2108c7e1763817938be589eea852e74898f7da675cd127aa05de7757\",\"RepoTags\":[\"registry.gitlab.com/gitlab-org/gitlab-runner/gitlab-runner-helper:x86_64-v17.4.0\"],\"RepoDigests\":null,\"Containers\":1,\"Created\":1727079791,\"Size\":68497806,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:09c48aa4008e6093efd97f36b5a8489f46b83ae13d11ace546ac0c7b2e7214d0\",\"RepoTags\":[\"gitlab/gitlab-runner:latest\"],\"RepoDigests\":[\"gitlab/gitlab-runner@sha256:631812a07dad6dba300f3f06afb60be684b6c2efb845b32244047d5799240e77\"],\"Containers\":1,\"Created\":1726749639,\"Size\":798118644,\"VirtualSize\":0,\"SharedSize\":72813256},{\"Id\":\"sha256:2a7a00805182656e10a34be0146300803bf3d8ddaa9fb7305848f90d15b52afb\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726576058,\"Size\":1196879888,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:00f4299046422d22b261db9654182bad2844322a7d34fc6f04845166b544d8b4\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726475270,\"Size\":1196879721,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:a330241c6dfcd40ffc41549ccec35fe3bdff0e007e7f5213fc870c0ca5bf72f8\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726154042,\"Size\":1196849808,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:f0190b296a6d9e14ebcf6b217c77a393ade9574a01fb7cef09442649494e152d\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726153598,\"Size\":1196849781,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:37fd842ce13e6cbb5154e532ab933e2a423044eec9bf199390084d2c06759321\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726152861,\"Size\":1196849608,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:4e1969850912cce5dd9e091319997653312f230981f853ea3344b1854b0204e5\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726152134,\"Size\":1196849391,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:64ffcce20400338a75ae72ef037ed78a2857a05579ebb912a7f211342bab73c2\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726151839,\"Size\":1196849392,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:4c950507e526d639c5f91687f1edab5b9584c28d162aa2471e1af43ae299d8b2\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726151407,\"Size\":1196849390,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:fe179dbcf9edf6b3e2fd5f3b1f981027d79f5000b5ab16fc5ecb9bbca8146ed0\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726140451,\"Size\":1196849412,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:9a8d49acf56d6651f4ed72304776aaf20603170a0b3df900a9b0c9bd4c14a371\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1726139024,\"Size\":1196849353,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:b215e4a7f08e296fcf3739697c8467bec878bcb02aed4a262db52e11b928ba9d\",\"RepoTags\":null,\"RepoDigests\":null,\"Containers\":0,\"Created\":1725974447,\"Size\":1196628871,\"VirtualSize\":0,\"SharedSize\":1088583201},{\"Id\":\"sha256:ea2ebd905ab246ece277be25520ca0cfe82758b3d2b369e2fd69b374c1d6c7fa\",\"RepoTags\":[\"python:3\"],\"RepoDigests\":[\"python@sha256:4c3ced72a5b1cf46e72dfddc1eb308740a8f94c4acd8c80334799361e520e91b\",\"python@sha256:7859853e7607927aa1d1b1a5a2f9e580ac90c2b66feeb1b77da97fed03b1ccbe\"],\"Containers\":1,\"Created\":1725902165,\"Size\":1013190869,\"VirtualSize\":0,\"SharedSize\":929153692},{\"Id\":\"sha256:85dc94c68d9b63f47557c19e09cd5839d306e707f7e965fe185486806cd72f08\",\"RepoTags\":null,\"RepoDigests\":[\"python@sha256:73840b2eacd375e9ab38d65c5ccca1f98524cabccbdc4f9d0932a55d1967a1ab\",\"python@sha256:9767f7e7c8326e565bcca22b5a2ccbe3440045bbdae0e68072562a3a3e56499b\",\"python@sha256:fcad5ffb670a9f1edc5cc232b2b321e617aaaae1a22c54242964178e408e0057\"],\"Containers\":0,\"Created\":1725900414,\"Size\":1013171519,\"VirtualSize\":0,\"SharedSize\":929153692},{\"Id\":\"sha256:e124c170392e767f8278d6e4039203d84283abf0338789bccbeec73b94738611\",\"RepoTags\":[\"registry.gitlab.com/gitlab-org/gitlab-runner/gitlab-runner-helper:x86_64-v17.3.1\"],\"RepoDigests\":null,\"Containers\":0,\"Created\":1725888196,\"Size\":68468759,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:7f173d068b5310211101dd7a6c90c5ce633f9c3faf5455a5afc6df8f132d339e\",\"RepoTags\":[\"instrumentisto/rsync-ssh:latest\"],\"RepoDigests\":[\"instrumentisto/rsync-ssh@sha256:4be6ddee68294f4ab97e2a4bfa78d21e3809354ec35019c97e4ca6ba52b90812\"],\"Containers\":0,\"Created\":1725873429,\"Size\":14645154,\"VirtualSize\":0,\"SharedSize\":7797760},{\"Id\":\"sha256:61529e94ffe8f1e3f6bfc4f37477482c14ac9b21509db18668e233a3a0792d91\",\"RepoTags\":[\"netboxcommunity/netbox:v4.0-2.9.1\"],\"RepoDigests\":[\"netboxcommunity/netbox@sha256:619f123f65cb747dd5acac56283506ca9a82107bac27475fa7176e432e403877\"],\"Containers\":0,\"Created\":1725382381,\"Size\":686127280,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:14c2e911668b68b2bb91d59187946db8470753dc7ab5b55af9e5c943ec8b15e9\",\"RepoTags\":null,\"RepoDigests\":[\"gitlab/gitlab-runner@sha256:b1b483cf467f00aeb6850a8429a0677efa4704c166ac6f664ff5f8c7c65f1c8d\"],\"Containers\":0,\"Created\":1724260255,\"Size\":773006817,\"VirtualSize\":0,\"SharedSize\":72813256},{\"Id\":\"sha256:b3c3467dc55c9e34380e6802d7c6c0b5af0088a738795553b1ba7ec5d78f0f79\",\"RepoTags\":[\"gitlab/gitlab-ce:latest\"],\"RepoDigests\":[\"gitlab/gitlab-ce@sha256:6f2ab9c42cef6b8058ef45042ce33a4505a0a9ac1a8d9ed85016ceca743dd01d\"],\"Containers\":1,\"Created\":1724188463,\"Size\":3026865380,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:8c93ef98899116c5894541768dfab8a4f8ac03ae6c4bd0ccb2593439598a99e9\",\"RepoTags\":[\"postgres:16-alpine\"],\"RepoDigests\":[\"postgres@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf\"],\"Containers\":0,\"Created\":1723137628,\"Size\":244933611,\"VirtualSize\":0,\"SharedSize\":7797760},{\"Id\":\"sha256:60c9611c542815b9a47885d70682e5dd290ac005737b07cba210aee323317575\",\"RepoTags\":[\"ad-form:latest\"],\"RepoDigests\":null,\"Containers\":1,\"Created\":1722590789,\"Size\":1195520789,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:7d06252fad43690f61cbb858628b933fd85f048aaba4c05e577274b2c77cd7cb\",\"RepoTags\":[\"redis:7-alpine\"],\"RepoDigests\":[\"redis@sha256:c35af3bbcef51a62c8bae5a9a563c6f1b60d7ebaea4cb5a3ccbcc157580ae098\"],\"Containers\":0,\"Created\":1722239946,\"Size\":41195030,\"VirtualSize\":0,\"SharedSize\":7797760},{\"Id\":\"sha256:da7b3f96549f51221ac02ad16251b3d0df33bbc4490971b48348fc87eadc4a77\",\"RepoTags\":[\"redis:alpine\"],\"RepoDigests\":[\"redis@sha256:eaea8264f74a95ea9a0767c794da50788cbd9cf5223951674d491fa1b3f4f2d2\"],\"Containers\":1,\"Created\":1722239946,\"Size\":41213744,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:28147ecda6596be570548a7f81be5bc8eb487a3e3a7d6dca8595b612db1a92d5\",\"RepoTags\":[\"jc21/nginx-proxy-manager:latest\"],\"RepoDigests\":[\"jc21/nginx-proxy-manager@sha256:5bd2aae54ac0b6f4ef6777143ab736baf5366807894a4c7fca7bfa2fbaf1489c\"],\"Containers\":1,\"Created\":1719834230,\"Size\":1089116073,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:55b523bfd9ebdacfe9083e3ed9d01d7fed8e4208b65ca5a3b425f10454375f18\",\"RepoTags\":[\"lscr.io/linuxserver/netbootxyz:latest\"],\"RepoDigests\":[\"lscr.io/linuxserver/netbootxyz@sha256:dce6b2c729611f1090f2e6479b764d98aef24cc340d018d923fa6678fcbf330e\"],\"Containers\":1,\"Created\":1719024718,\"Size\":101461312,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:2e4d49c10f9142b30bb5001e8a1ec2e3b788e4b162b86d910d16c55511edae79\",\"RepoTags\":[\"passcore:latest\"],\"RepoDigests\":null,\"Containers\":1,\"Created\":1718693862,\"Size\":220315299,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:c95fec176b45c8c330db67aef508f70e8d0b3aa28deae1055aa0a26e93141d63\",\"RepoTags\":[\"public.ecr.aws/zinclabs/openobserve:latest\"],\"RepoDigests\":[\"public.ecr.aws/zinclabs/openobserve@sha256:35b3da31658ee62679db4e560a3e78c484a9ce55fbfb6382570d199898f135d7\"],\"Containers\":1,\"Created\":1717418847,\"Size\":164733844,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:7d6785268b11fcb87e95e3da997bdbbeb6a8f48064abb56021923d20c27e819e\",\"RepoTags\":[\"portainer/portainer-ee:latest\"],\"RepoDigests\":[\"portainer/portainer-ee@sha256:0aa305da72738d9f90a209bf74bdc74172004690fa298f52d5f92dd065f26aea\"],\"Containers\":1,\"Created\":1713734957,\"Size\":322222528,\"VirtualSize\":0,\"SharedSize\":0},{\"Id\":\"sha256:b3546b6381e597392df651d4efca54536ffc8276bedbdc9383cd19533b425f84\",\"RepoTags\":[\"ziggyds/iventoy:latest\"],\"RepoDigests\":[\"ziggyds/iventoy@sha256:0e1d4a520cd761559aead3bfecb8c46d579aa6e97e81bc4895fe246e31e62746\"],\"Containers\":1,\"Created\":1712106934,\"Size\":104638955,\"VirtualSize\":0,\"SharedSize\":0}],\"Containers\":[{\"Id\":\"2e0e433f20cc649e18ab3533d8bccef8ec4d1ba84ee00dcd595aa4e5f2306745\",\"Image\":\"sha256:ea2ebd905ab246ece277be25520ca0cfe82758b3d2b369e2fd69b374c1d6c7fa\",\"Command\":\"sh -c 'if [ -x /usr/local/bin/bash ]; then\\n\\texec /usr/local/bin/bash \\nelif [ -x /usr/bin/bash ]; then\\n\\texec /usr/bin/bash \\nelif [ -x /bin/bash ]; then\\n\\texec /bin/bash \\nelif [ -x /usr/local/bin/sh ]; then\\n\\texec /usr/local/bin/sh \\nelif [ -x /usr/bin/sh ]; then\\n\\texec /usr/bin/sh \\nelif [ -x /bin/sh ]; then\\n\\texec /bin/sh \\nelif [ -x /busybox/sh ]; then\\n\\texec /busybox/sh \\nelse\\n\\techo shell not found\\n\\texit 1\\nfi\\n\\n'\",\"Created\":1727097797,\"State\":\"running\",\"Status\":\"Up About a minute\",\"Ports\":[],\"SizeRw\":449705021,\"SizeRootFs\":1462895890,\"Names\":[\"/runner-o3wmkpq-project-3-concurrent-0-176ee4e133a41e6b-build\"],\"Mounts\":[{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Destination\":\"/builds\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Destination\":\"/cache\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"1cadfabe1298f15725b08e5064a63e1e87f9d40c129f42df0f270ffa5f5a2e13\",\"Image\":\"sha256:b0d396db2108c7e1763817938be589eea852e74898f7da675cd127aa05de7757\",\"Command\":\"/usr/bin/dumb-init /entrypoint gitlab-runner-build\",\"Created\":1727097793,\"State\":\"exited\",\"Status\":\"Exited (0) About a minute ago\",\"Ports\":[],\"SizeRw\":55,\"SizeRootFs\":68497861,\"Names\":[\"/runner-o3wmkpq-project-3-concurrent-0-176ee4e133a41e6b-predefined\"],\"Mounts\":[{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Destination\":\"/builds\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"Source\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Destination\":\"/cache\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"68437d5947426c1a9b4995440935752408ae11abc9e91a0c920c5a1f7da151f1\",\"Image\":\"adform-webform\",\"Command\":\"docker-entrypoint.sh node build/index.js prod\",\"Created\":1727092119,\"State\":\"running\",\"Status\":\"Up About an hour\",\"Ports\":[{\"PrivatePort\":3000,\"PublicPort\":8002,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":3000,\"PublicPort\":8002,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":3002,\"PublicPort\":8003,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":3002,\"PublicPort\":8003,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":65,\"SizeRootFs\":1196880016,\"Names\":[\"/adform-webform-1\"],\"Mounts\":[{\"Name\":\"adform_data\",\"Source\":\"/var/lib/docker/volumes/adform_data/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"13d5d2f2bc177dc52dd0b88dfe1ca431bf67c85419ce1fbf4f3ba43e5b694190\",\"Image\":\"gitlab/gitlab-runner:latest\",\"Command\":\"/usr/bin/dumb-init /entrypoint run --user=gitlab-runner --working-directory=/home/gitlab-runner\",\"Created\":1727079529,\"State\":\"running\",\"Status\":\"Up 5 hours\",\"Ports\":[],\"SizeRw\":5639,\"SizeRootFs\":798124283,\"Names\":[\"/gitlab-runner\"],\"Mounts\":[{\"Name\":\"\",\"Source\":\"/var/run/docker.sock\",\"Destination\":\"/var/run/docker.sock\",\"Driver\":\"\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"},{\"Name\":\"gitlab-runner-config\",\"Source\":\"/var/lib/docker/volumes/gitlab-runner-config/_data\",\"Destination\":\"/etc/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92\",\"Source\":\"\",\"Destination\":\"/home/gitlab-runner\",\"Driver\":\"local\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"2fb39dd08e014801aedbb72f72ccd97412f2a4be1034558ef23e9e33edfdab55\",\"Image\":\"gitlab/gitlab-ce:latest\",\"Command\":\"/assets/wrapper\",\"Created\":1726051261,\"State\":\"running\",\"Status\":\"Up 12 days (healthy)\",\"Ports\":[{\"PrivatePort\":22,\"PublicPort\":2424,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":22,\"PublicPort\":2424,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":443,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":80,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":9080,\"PublicPort\":9080,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":9080,\"PublicPort\":9080,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":2955353,\"SizeRootFs\":3029820733,\"Names\":[\"/gitlab\"],\"Mounts\":[{\"Name\":\"gitlab_logs\",\"Source\":\"/var/lib/docker/volumes/gitlab_logs/_data\",\"Destination\":\"/var/log/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"gitlab_data\",\"Source\":\"/var/lib/docker/volumes/gitlab_data/_data\",\"Destination\":\"/var/opt/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"gitlab_config\",\"Source\":\"/var/lib/docker/volumes/gitlab_config/_data\",\"Destination\":\"/etc/gitlab\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"a0e4aef9d6c098278d18dccbd1eeb9a81ba8b856fc3c22616cfdcfb2791c7ed3\",\"Image\":\"jc21/nginx-proxy-manager:latest\",\"Command\":\"/init\",\"Created\":1724140555,\"State\":\"running\",\"Status\":\"Up 4 weeks\",\"Ports\":[{\"PrivatePort\":81,\"PublicPort\":81,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":81,\"PublicPort\":81,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":443,\"PublicPort\":443,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":443,\"PublicPort\":443,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":80,\"PublicPort\":80,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":80,\"PublicPort\":80,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":503534,\"SizeRootFs\":1089619607,\"Names\":[\"/proxy-manager-app-1\"],\"Mounts\":[{\"Name\":\"\",\"Source\":\"/data/compose/1/v1/data\",\"Destination\":\"/data\",\"Driver\":\"\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"},{\"Name\":\"\",\"Source\":\"/data/compose/1/v1/letsencrypt\",\"Destination\":\"/etc/letsencrypt\",\"Driver\":\"\",\"Mode\":\"rw\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"}]},{\"Id\":\"9385bf4c45b276f7132e6be83538e0ac928cca5f25c70a6badac3940ab7c9cc7\",\"Image\":\"redis:alpine\",\"Command\":\"docker-entrypoint.sh '--save 60 1' '--loglevel warning'\",\"Created\":1723566460,\"State\":\"running\",\"Status\":\"Up 5 weeks\",\"Ports\":[{\"PrivatePort\":6379,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"}],\"SizeRw\":0,\"SizeRootFs\":41213744,\"Names\":[\"/adform-redis-1\"],\"Mounts\":[{\"Name\":\"adform_redis\",\"Source\":\"/var/lib/docker/volumes/adform_redis/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"8f321e9a17192497906a507e651a71cd128416335bbb5d8bfd6914c7683e466e\",\"Image\":\"public.ecr.aws/zinclabs/openobserve:latest\",\"Command\":\"/openobserve\",\"Created\":1723446534,\"State\":\"running\",\"Status\":\"Up 6 weeks\",\"Ports\":[{\"PrivatePort\":5080,\"PublicPort\":5080,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5080,\"PublicPort\":5080,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":5514,\"PublicPort\":5514,\"Type\":\"udp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":164733844,\"Names\":[\"/openobserve\"],\"Mounts\":[{\"Name\":\"openobserve_data\",\"Source\":\"/var/lib/docker/volumes/openobserve_data/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"de78172a69e625723ede4eeada4131b634cca45b801a686416957390bd33685d\",\"Image\":\"ad-form:latest\",\"Command\":\"docker-entrypoint.sh node build/index.js prod\",\"Created\":1722591793,\"State\":\"exited\",\"Status\":\"Exited (137) 7 weeks ago\",\"Ports\":[],\"SizeRw\":65,\"SizeRootFs\":1195520854,\"Names\":[\"/ADForm\"],\"Mounts\":[{\"Name\":\"adform_data\",\"Source\":\"/var/lib/docker/volumes/adform_data/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"e7e8bb2d8d58ed4152c67475df36a1e4d8299e56970b7cad74e833f4aee577f4\",\"Image\":\"ziggyds/iventoy:latest\",\"Command\":\"/bin/sh -c /entrypoint.sh\",\"Created\":1719395901,\"State\":\"running\",\"Status\":\"Up 7 weeks\",\"Ports\":[{\"PrivatePort\":10809,\"PublicPort\":10809,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":10809,\"PublicPort\":10809,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":16000,\"PublicPort\":16000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":16000,\"PublicPort\":16000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":26000,\"PublicPort\":26000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":26000,\"PublicPort\":26000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":67,\"PublicPort\":67,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":67,\"PublicPort\":67,\"Type\":\"udp\",\"IP\":\"::\"},{\"PrivatePort\":69,\"PublicPort\":69,\"Type\":\"udp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":69,\"PublicPort\":69,\"Type\":\"udp\",\"IP\":\"::\"}],\"SizeRw\":2,\"SizeRootFs\":104638957,\"Names\":[\"/iventoy\"],\"Mounts\":[{\"Name\":\"iventoy_config\",\"Source\":\"/var/lib/docker/volumes/iventoy_config/_data\",\"Destination\":\"/app/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"iventoy_isos\",\"Source\":\"/var/lib/docker/volumes/iventoy_isos/_data\",\"Destination\":\"/app/iso\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"iventoy_logs\",\"Source\":\"/var/lib/docker/volumes/iventoy_logs/_data\",\"Destination\":\"/app/log\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"6a55df09546c1034ec31e38142629a3a229306f228172c47eeef6a814f6fe528\",\"Image\":\"lscr.io/linuxserver/netbootxyz:latest\",\"Command\":\"/init\",\"Created\":1719392183,\"State\":\"exited\",\"Status\":\"Exited (0) 2 months ago\",\"Ports\":[],\"SizeRw\":24693,\"SizeRootFs\":101486005,\"Names\":[\"/netbootxyz\"],\"Mounts\":[{\"Name\":\"netbootxyz_netbootxyz_config\",\"Source\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_config/_data\",\"Destination\":\"/config\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"netbootxyz_netbootxyz_assets\",\"Source\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_assets/_data\",\"Destination\":\"/assets\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"}]},{\"Id\":\"1f8ad0b8f0e077305310f8a00d1c407622057627303055042970c86846c779d7\",\"Image\":\"passcore:latest\",\"Command\":\"dotnet Unosquare.PassCore.Web.dll\",\"Created\":1718693905,\"State\":\"running\",\"Status\":\"Up 8 weeks\",\"Ports\":[{\"PrivatePort\":80,\"PublicPort\":8001,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":80,\"PublicPort\":8001,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":220315299,\"Names\":[\"/Passcore\"],\"Mounts\":[]},{\"Id\":\"c89c6bcf0c3f188e50a54fe9a96574121b633c87d454c7016de9ce166df65284\",\"Image\":\"portainer/portainer-ee:latest\",\"Command\":\"/portainer\",\"Created\":1716202323,\"State\":\"running\",\"Status\":\"Up 8 weeks\",\"Ports\":[{\"PrivatePort\":8000,\"PublicPort\":8000,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":8000,\"PublicPort\":8000,\"Type\":\"tcp\",\"IP\":\"::\"},{\"PrivatePort\":9000,\"PublicPort\":0,\"Type\":\"tcp\",\"IP\":\"\"},{\"PrivatePort\":9443,\"PublicPort\":9443,\"Type\":\"tcp\",\"IP\":\"0.0.0.0\"},{\"PrivatePort\":9443,\"PublicPort\":9443,\"Type\":\"tcp\",\"IP\":\"::\"}],\"SizeRw\":0,\"SizeRootFs\":322222528,\"Names\":[\"/portainer\"],\"Mounts\":[{\"Name\":\"portainer_data\",\"Source\":\"/var/lib/docker/volumes/portainer_data/_data\",\"Destination\":\"/data\",\"Driver\":\"local\",\"Mode\":\"z\",\"RW\":true,\"Propagation\":\"\",\"Type\":\"volume\"},{\"Name\":\"\",\"Source\":\"/var/run/docker.sock\",\"Destination\":\"/var/run/docker.sock\",\"Driver\":\"\",\"Mode\":\"\",\"RW\":true,\"Propagation\":\"rprivate\",\"Type\":\"bind\"}]}],\"Volumes\":[{\"CreatedAt\":1718112830,\"Mountpoint\":\"/var/lib/docker/volumes/adform_data/_data\",\"Name\":\"adform_data\",\"UsageData\":{\"RefCount\":2,\"Size\":1712595}},{\"CreatedAt\":1721639617,\"Mountpoint\":\"/var/lib/docker/volumes/gitlab_config/_data\",\"Name\":\"gitlab_config\",\"UsageData\":{\"RefCount\":1,\"Size\":179884}},{\"CreatedAt\":1717928672,\"Mountpoint\":\"/var/lib/docker/volumes/openobserve_data/_data\",\"Name\":\"openobserve_data\",\"UsageData\":{\"RefCount\":1,\"Size\":2072125279}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-media-files/_data\",\"Name\":\"netbox-docker_netbox-media-files\",\"UsageData\":{\"RefCount\":0,\"Size\":66847267}},{\"CreatedAt\":1719392183,\"Mountpoint\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_assets/_data\",\"Name\":\"netbootxyz_netbootxyz_assets\",\"UsageData\":{\"RefCount\":1,\"Size\":661651456}},{\"CreatedAt\":1724409470,\"Mountpoint\":\"/var/lib/docker/volumes/b4e9cdbff917a0d4392b23b09c8837921aa27a352487ec4bf0ed4c63c63163fc/_data\",\"Name\":\"b4e9cdbff917a0d4392b23b09c8837921aa27a352487ec4bf0ed4c63c63163fc\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1721641470,\"Mountpoint\":\"/var/lib/docker/volumes/gitlab-runner-config/_data\",\"Name\":\"gitlab-runner-config\",\"UsageData\":{\"RefCount\":1,\"Size\":865}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-redis-cache-data/_data\",\"Name\":\"netbox-docker_netbox-redis-cache-data\",\"UsageData\":{\"RefCount\":0,\"Size\":1911645}},{\"CreatedAt\":1722589006,\"Mountpoint\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-1-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Name\":\"runner-o3wmkpq-project-1-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1723566460,\"Mountpoint\":\"/var/lib/docker/volumes/adform_redis/_data\",\"Name\":\"adform_redis\",\"UsageData\":{\"RefCount\":1,\"Size\":189766}},{\"CreatedAt\":1721641470,\"Mountpoint\":\"/var/lib/docker/volumes/ab960235c17b85afce667fd0fc5d4e2386fc3bee6af7693681ac58b22e6103b3/_data\",\"Name\":\"ab960235c17b85afce667fd0fc5d4e2386fc3bee6af7693681ac58b22e6103b3\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1721639617,\"Mountpoint\":\"/var/lib/docker/volumes/gitlab_logs/_data\",\"Name\":\"gitlab_logs\",\"UsageData\":{\"RefCount\":1,\"Size\":437461481}},{\"CreatedAt\":1719395901,\"Mountpoint\":\"/var/lib/docker/volumes/iventoy_logs/_data\",\"Name\":\"iventoy_logs\",\"UsageData\":{\"RefCount\":1,\"Size\":587588}},{\"CreatedAt\":1719392183,\"Mountpoint\":\"/var/lib/docker/volumes/netbootxyz_netbootxyz_config/_data\",\"Name\":\"netbootxyz_netbootxyz_config\",\"UsageData\":{\"RefCount\":1,\"Size\":10853117}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-redis-data/_data\",\"Name\":\"netbox-docker_netbox-redis-data\",\"UsageData\":{\"RefCount\":0,\"Size\":38461347}},{\"CreatedAt\":1722589011,\"Mountpoint\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-1-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Name\":\"runner-o3wmkpq-project-1-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"UsageData\":{\"RefCount\":0,\"Size\":20807990}},{\"CreatedAt\":1719395901,\"Mountpoint\":\"/var/lib/docker/volumes/iventoy_config/_data\",\"Name\":\"iventoy_config\",\"UsageData\":{\"RefCount\":1,\"Size\":15092238}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-postgres-data/_data\",\"Name\":\"netbox-docker_netbox-postgres-data\",\"UsageData\":{\"RefCount\":0,\"Size\":228985687}},{\"CreatedAt\":1727079529,\"Mountpoint\":\"/var/lib/docker/volumes/a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92/_data\",\"Name\":\"a6453ef94632fb5ecbec8771b1b9f53bf2916dc8d22c8aa592519f43929c3b92\",\"UsageData\":{\"RefCount\":1,\"Size\":0}},{\"CreatedAt\":1719395901,\"Mountpoint\":\"/var/lib/docker/volumes/iventoy_isos/_data\",\"Name\":\"iventoy_isos\",\"UsageData\":{\"RefCount\":1,\"Size\":1212153856}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-reports-files/_data\",\"Name\":\"netbox-docker_netbox-reports-files\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1722417436,\"Mountpoint\":\"/var/lib/docker/volumes/netbox-docker_netbox-scripts-files/_data\",\"Name\":\"netbox-docker_netbox-scripts-files\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1724241028,\"Mountpoint\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8/_data\",\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-c33bcaa1fd2c77edfc3893b41966cea8\",\"UsageData\":{\"RefCount\":2,\"Size\":600868}},{\"CreatedAt\":1721639617,\"Mountpoint\":\"/var/lib/docker/volumes/gitlab_data/_data\",\"Name\":\"gitlab_data\",\"UsageData\":{\"RefCount\":1,\"Size\":3994113136}},{\"CreatedAt\":1716202291,\"Mountpoint\":\"/var/lib/docker/volumes/portainer_data/_data\",\"Name\":\"portainer_data\",\"UsageData\":{\"RefCount\":1,\"Size\":790046}},{\"CreatedAt\":1722248533,\"Mountpoint\":\"/var/lib/docker/volumes/zabbix-docker_snmptraps/_data\",\"Name\":\"zabbix-docker_snmptraps\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1724136212,\"Mountpoint\":\"/var/lib/docker/volumes/772738704d01e1b1981f4cc1c7ac851f0caabb6b416b8441b21ade3373d7dca4/_data\",\"Name\":\"772738704d01e1b1981f4cc1c7ac851f0caabb6b416b8441b21ade3373d7dca4\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1724136275,\"Mountpoint\":\"/var/lib/docker/volumes/2f4a673afa9a9fd448a9975a9b530d86af917655bc4624024ef355c019de0489/_data\",\"Name\":\"2f4a673afa9a9fd448a9975a9b530d86af917655bc4624024ef355c019de0489\",\"UsageData\":{\"RefCount\":0,\"Size\":0}},{\"CreatedAt\":1724241027,\"Mountpoint\":\"/var/lib/docker/volumes/runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70/_data\",\"Name\":\"runner-o3wmkpq-project-3-concurrent-0-cache-3c3f060a0374fc8bc39395164f415a70\",\"UsageData\":{\"RefCount\":2,\"Size\":22}}]}"}]}' to '10.25.172.41'
2024/09/23 16:24:20.858427 executed direct exporter task for key 'docker.container_stats[[/portainer]]'
2024/09/23 16:24:20.858549 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"cpu_stats\":{\"cpu_usage\":{\"total_usage\":2859957803000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":579772410000,\"usage_in_usermode\":2280185393000},\"system_cpu_usage\":19289367910000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"precpu_stats\":{\"cpu_usage\":{\"total_usage\":2859957803000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":579772410000,\"usage_in_usermode\":2280185393000},\"system_cpu_usage\":19289363870000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"memory_stats\":{\"usage\":89415680,\"max_usage\":0,\"stats\":{\"active_anon\":18653184,\"active_file\":32407552,\"anon\":48910336,\"anon_thp\":44040192,\"file\":37367808,\"file_dirty\":0,\"file_mapped\":23887872,\"file_writeback\":0,\"inactive_anon\":30265344,\"inactive_file\":4960256,\"kernel_stack\":163840,\"pgactivate\":28857,\"pgdeactivate\":12734,\"pgfault\":526629,\"pglazyfree\":0,\"pglazyfreed\":0,\"pgmajfault\":656,\"pgrefill\":13156,\"pgscan\":42754,\"pgsteal\":13107,\"shmem\":0,\"slab\":2617920,\"slab_reclaimable\":871712,\"slab_unreclaimable\":1746208,\"sock\":0,\"thp_collapse_alloc\":1173,\"thp_fault_alloc\":34,\"unevictable\":0,\"workingset_activate\":0,\"workingset_nodereclaim\":0,\"workingset_refault\":0},\"failcnt\":0,\"limit\":33655873536,\"commitbytes\":0,\"commitpeakbytes\":0,\"privateworkingset\":0},\"pids_stats\":{\"current\":10},\"name\":\"/portainer\",\"id\":\"c89c6bcf0c3f188e50a54fe9a96574121b633c87d454c7016de9ce166df65284\",\"networks\":{\"eth0\":{\"rx_bytes\":95430045,\"rx_packets\":593365,\"rx_errors\":0,\"rx_dropped\":0,\"tx_bytes\":1882271914,\"tx_packets\":413145,\"tx_errors\":0,\"tx_dropped\":0,\"endpoint_id\":\"\",\"instance_id\":\"\"}}}"}]}' to '10.25.172.41'
2024/09/23 16:24:20.864602 executed direct exporter task for key 'docker.container_stats[[/adform-redis-1]]'
2024/09/23 16:24:20.864764 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"cpu_stats\":{\"cpu_usage\":{\"total_usage\":34675616709000,\"percpu_usage\":null,\"percent_usage\":0.8755339805825243,\"usage_in_kernelmode\":3381702983000,\"usage_in_usermode\":31293913726000},\"system_cpu_usage\":19289367940000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"precpu_stats\":{\"cpu_usage\":{\"total_usage\":34675607691000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":3381702983000,\"usage_in_usermode\":31293904707000},\"system_cpu_usage\":19289363820000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"memory_stats\":{\"usage\":8683520,\"max_usage\":0,\"stats\":{\"active_anon\":4096,\"active_file\":458752,\"anon\":7737344,\"anon_thp\":2097152,\"file\":487424,\"file_dirty\":0,\"file_mapped\":307200,\"file_writeback\":0,\"inactive_anon\":7753728,\"inactive_file\":28672,\"kernel_stack\":98304,\"pgactivate\":6,\"pgdeactivate\":0,\"pgfault\":1572558,\"pglazyfree\":0,\"pglazyfreed\":0,\"pgmajfault\":12,\"pgrefill\":0,\"pgscan\":1877,\"pgsteal\":37,\"shmem\":0,\"slab\":216424,\"slab_reclaimable\":39304,\"slab_unreclaimable\":177120,\"sock\":0,\"thp_collapse_alloc\":0,\"thp_fault_alloc\":5,\"unevictable\":0,\"workingset_activate\":0,\"workingset_nodereclaim\":0,\"workingset_refault\":0},\"failcnt\":0,\"limit\":33655873536,\"commitbytes\":0,\"commitpeakbytes\":0,\"privateworkingset\":0},\"pids_stats\":{\"current\":6},\"name\":\"/adform-redis-1\",\"id\":\"9385bf4c45b276f7132e6be83538e0ac928cca5f25c70a6badac3940ab7c9cc7\",\"networks\":{\"eth0\":{\"rx_bytes\":212475920,\"rx_packets\":2415884,\"rx_errors\":0,\"rx_dropped\":0,\"tx_bytes\":121036304,\"tx_packets\":1805671,\"tx_errors\":0,\"tx_dropped\":0,\"endpoint_id\":\"\",\"instance_id\":\"\"}}}"}]}' to '10.25.172.41'
2024/09/23 16:24:21.000771 plugin Cpu: executing collector task
2024/09/23 16:24:21.201557 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:21.202196 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:22.001386 plugin Cpu: executing collector task
2024/09/23 16:24:23.000426 plugin Cpu: executing collector task
2024/09/23 16:24:24.000396 plugin Cpu: executing collector task
2024/09/23 16:24:25.001461 plugin Cpu: executing collector task
2024/09/23 16:24:26.000509 plugin Cpu: executing collector task
2024/09/23 16:24:27.000465 plugin Cpu: executing collector task
2024/09/23 16:24:27.201008 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:27.201541 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:28.000446 plugin Cpu: executing collector task
2024/09/23 16:24:29.000589 plugin Cpu: executing collector task
2024/09/23 16:24:30.001417 plugin Cpu: executing collector task
2024/09/23 16:24:31.000547 plugin Cpu: executing collector task
2024/09/23 16:24:32.001388 plugin Cpu: executing collector task
2024/09/23 16:24:33.000997 plugin Cpu: executing collector task
2024/09/23 16:24:33.201567 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:33.202046 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:34.000954 plugin Cpu: executing collector task
2024/09/23 16:24:35.000567 plugin Cpu: executing collector task
2024/09/23 16:24:36.000998 plugin Cpu: executing collector task
2024/09/23 16:24:37.000483 plugin Cpu: executing collector task
2024/09/23 16:24:38.001084 plugin Cpu: executing collector task
2024/09/23 16:24:39.001364 plugin Cpu: executing collector task
2024/09/23 16:24:39.201033 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:39.201463 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:40.000327 plugin Cpu: executing collector task
2024/09/23 16:24:41.001161 plugin Cpu: executing collector task
2024/09/23 16:24:41.219432 failed to process an incoming connection from 10.25.172.41: read tcp 10.25.172.37:10050->10.25.172.41:31920: i/o timeout
2024/09/23 16:24:42.000625 plugin Cpu: executing collector task
2024/09/23 16:24:43.001083 plugin Cpu: executing collector task
2024/09/23 16:24:44.000824 plugin Cpu: executing collector task
2024/09/23 16:24:44.201713 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:44.202274 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:44.220602 failed to process an incoming connection from 10.25.172.41: read tcp 10.25.172.37:10050->10.25.172.41:31928: i/o timeout
2024/09/23 16:24:45.000459 plugin Cpu: executing collector task
2024/09/23 16:24:46.001021 plugin Cpu: executing collector task
2024/09/23 16:24:47.000713 plugin Cpu: executing collector task
2024/09/23 16:24:48.000527 plugin Cpu: executing collector task
2024/09/23 16:24:49.000600 plugin Cpu: executing collector task
2024/09/23 16:24:50.000408 plugin Cpu: executing collector task
2024/09/23 16:24:50.200926 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:50.201509 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:51.000346 plugin Cpu: executing collector task
2024/09/23 16:24:52.000582 plugin Cpu: executing collector task
2024/09/23 16:24:53.000796 plugin Cpu: executing collector task
2024/09/23 16:24:54.000391 plugin Cpu: executing collector task
2024/09/23 16:24:55.000654 plugin Cpu: executing collector task
2024/09/23 16:24:55.201425 [101] In sendHeartbeatMsg() from 127.0.0.1:10051
2024/09/23 16:24:55.202043 [101] End of sendHeartBeatMsg() from 127.0.0.1:10051
2024/09/23 16:24:56.000814 plugin Cpu: executing collector task
2024/09/23 16:24:56.201218 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:56.202075 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:24:57.000398 plugin Cpu: executing collector task
2024/09/23 16:24:58.000780 plugin Cpu: executing collector task
2024/09/23 16:24:59.001121 plugin Cpu: executing collector task
2024/09/23 16:25:00.000651 plugin Cpu: executing collector task
2024/09/23 16:25:01.001423 plugin Cpu: executing collector task
2024/09/23 16:25:02.000897 plugin Cpu: executing collector task
2024/09/23 16:25:02.201702 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:02.202141 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:03.001010 plugin Cpu: executing collector task
2024/09/23 16:25:04.000316 plugin Cpu: executing collector task
2024/09/23 16:25:05.000965 plugin Cpu: executing collector task
2024/09/23 16:25:06.000427 plugin Cpu: executing collector task
2024/09/23 16:25:06.616399 received passive check request: '{"request":"passive checks","data":[{"key":"system.cpu.util[,steal]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:25:06.616811 [1] processing update request (1 requests)
2024/09/23 16:25:06.617003 [1] adding new request for key: 'system.cpu.util[,steal]'
2024/09/23 16:25:06.617178 [1] created direct exporter task for plugin 'Cpu' itemid:0 key 'system.cpu.util[,steal]'
2024/09/23 16:25:06.617385 executing direct exporter task for key 'system.cpu.util[,steal]'
2024/09/23 16:25:06.617580 executed direct exporter task for key 'system.cpu.util[[ steal]]'
2024/09/23 16:25:06.617793 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"0.000000"}]}' to '10.25.172.41'
2024/09/23 16:25:07.000374 plugin Cpu: executing collector task
2024/09/23 16:25:08.000938 plugin Cpu: executing collector task
2024/09/23 16:25:08.201463 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:08.202079 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:09.001216 plugin Cpu: executing collector task
2024/09/23 16:25:10.000716 plugin Cpu: executing collector task
2024/09/23 16:25:11.000590 plugin Cpu: executing collector task
2024/09/23 16:25:12.001233 plugin Cpu: executing collector task
2024/09/23 16:25:13.000748 plugin Cpu: executing collector task
2024/09/23 16:25:14.000640 plugin Cpu: executing collector task
2024/09/23 16:25:14.201396 [101] In refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:14.201882 [101] End of refreshActiveChecks() from 127.0.0.1:10051
2024/09/23 16:25:15.000389 plugin Cpu: executing collector task
2024/09/23 16:25:15.816065 received passive check request: '{"request":"passive checks","data":[{"key":"vm.memory.size[pavailable]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:25:15.816326 [1] processing update request (1 requests)
2024/09/23 16:25:15.816375 [1] adding new request for key: 'vm.memory.size[pavailable]'
2024/09/23 16:25:15.816403 [1] created direct exporter task for plugin 'Memory' itemid:0 key 'vm.memory.size[pavailable]'
2024/09/23 16:25:15.816458 executing direct exporter task for key 'vm.memory.size[pavailable]'
2024/09/23 16:25:15.816616 executed direct exporter task for key 'vm.memory.size[[pavailable]]'
2024/09/23 16:25:15.816686 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"63.361242"}]}' to '10.25.172.41'
2024/09/23 16:25:15.816854 received passive check request: '{"request":"passive checks","data":[{"key":"vm.memory.size[total]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:25:15.817037 [1] processing update request (1 requests)
2024/09/23 16:25:15.817100 [1] adding new request for key: 'vm.memory.size[total]'
2024/09/23 16:25:15.817123 [1] created direct exporter task for plugin 'Memory' itemid:0 key 'vm.memory.size[total]'
2024/09/23 16:25:15.817165 executing direct exporter task for key 'vm.memory.size[total]'
2024/09/23 16:25:15.817275 executed direct exporter task for key 'vm.memory.size[[total]]'
2024/09/23 16:25:15.817358 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"33655873536"}]}' to '10.25.172.41'
2024/09/23 16:25:16.001213 plugin Cpu: executing collector task
2024/09/23 16:25:17.000812 plugin Cpu: executing collector task
2024/09/23 16:25:17.814369 received passive check request: '{"request":"passive checks","data":[{"key":"docker.container_stats[\"/portainer\"]","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:25:17.814753 [1] processing update request (1 requests)
2024/09/23 16:25:17.814825 [1] adding new request for key: 'docker.container_stats["/portainer"]'
2024/09/23 16:25:17.814863 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.container_stats["/portainer"]'
2024/09/23 16:25:17.814981 executing direct exporter task for key 'docker.container_stats["/portainer"]'
2024/09/23 16:25:18.000534 plugin Cpu: executing collector task
2024/09/23 16:25:18.831760 executed direct exporter task for key 'docker.container_stats[[/portainer]]'
2024/09/23 16:25:18.831952 sending passive check response: '{"version":"7.0.3","variant":2,"data":[{"value":"{\"cpu_stats\":{\"cpu_usage\":{\"total_usage\":2859967548000,\"percpu_usage\":null,\"percent_usage\":0.03279187817258883,\"usage_in_kernelmode\":579772410000,\"usage_in_usermode\":2280195137000},\"system_cpu_usage\":19289598650000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"precpu_stats\":{\"cpu_usage\":{\"total_usage\":2859967225000,\"percpu_usage\":null,\"percent_usage\":0,\"usage_in_kernelmode\":579772410000,\"usage_in_usermode\":2280194815000},\"system_cpu_usage\":19289594710000000,\"online_cpus\":4,\"throttling_data\":{\"periods\":0,\"throttled_periods\":0,\"throttled_time\":0}},\"memory_stats\":{\"usage\":89415680,\"max_usage\":0,\"stats\":{\"active_anon\":18653184,\"active_file\":32407552,\"anon\":48910336,\"anon_thp\":44040192,\"file\":37367808,\"file_dirty\":0,\"file_mapped\":23887872,\"file_writeback\":0,\"inactive_anon\":30265344,\"inactive_file\":4960256,\"kernel_stack\":163840,\"pgactivate\":28857,\"pgdeactivate\":12734,\"pgfault\":526629,\"pglazyfree\":0,\"pglazyfreed\":0,\"pgmajfault\":656,\"pgrefill\":13156,\"pgscan\":42754,\"pgsteal\":13107,\"shmem\":0,\"slab\":2617920,\"slab_reclaimable\":871712,\"slab_unreclaimable\":1746208,\"sock\":0,\"thp_collapse_alloc\":1173,\"thp_fault_alloc\":34,\"unevictable\":0,\"workingset_activate\":0,\"workingset_nodereclaim\":0,\"workingset_refault\":0},\"failcnt\":0,\"limit\":33655873536,\"commitbytes\":0,\"commitpeakbytes\":0,\"privateworkingset\":0},\"pids_stats\":{\"current\":10},\"name\":\"/portainer\",\"id\":\"c89c6bcf0c3f188e50a54fe9a96574121b633c87d454c7016de9ce166df65284\",\"networks\":{\"eth0\":{\"rx_bytes\":95430045,\"rx_packets\":593365,\"rx_errors\":0,\"rx_dropped\":0,\"tx_bytes\":1882271914,\"tx_packets\":413145,\"tx_errors\":0,\"tx_dropped\":0,\"endpoint_id\":\"\",\"instance_id\":\"\"}}}"}]}' to '10.25.172.41'
2024/09/23 16:25:19.001154 plugin Cpu: executing collector task
2024/09/23 16:25:19.016643 received passive check request: '{"request":"passive checks","data":[{"key":"docker.containers","timeout":3}]}' from '10.25.172.41'
2024/09/23 16:25:19.016957 [1] processing update request (1 requests)
2024/09/23 16:25:19.017027 [1] adding new request for key: 'docker.containers'
2024/09/23 16:25:19.017065 [1] created direct exporter task for plugin 'Docker' itemid:0 key 'docker.containers'
2024/09/23 16:25:19.017165 executing direct exporter task for key 'docker.containers'

It seems that this problem occurs around the line plugin Cpu: executing collector task

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

8 participants