monitoring containers

Hi, I have deployed cadvisor on a server to monitor containers and it was successful.

podman run -d --name cadvisor1 \
  --volume /:/rootfs:ro \
  --volume /var/run/docker.sock:/var/run/docker.sock \
  --volume /dev/disk/:/dev/disk:ro \
  --volume /etc/machine-id:/etc/machine-id:ro \
  --volume /sys:/sys:ro \
  --volume /sys/fs/cgroup:/sys/fs/cgroup:ro \
  --volume /var/lib/containers:/var/lib/containers:rw \
  --volume /var/run:/var/run:rw \
  --privileged \
  -p 8085:8080 \
  bgxpa-imgprod.jfrog.io/cadvisor/cadvisor:v0.49.1

However, when I do it on other servers, I see that cadvisor does not collect the metrics.

Podman Containers

  1. Podman Containers

Driver Status

  • Version 4.9.4-rhel
  • API Version 1.41
  • Kernel Version 4.18.0-553.16.1.el8_10.x86_64
  • OS Version rhel

Docker Containers

  1. Docker Containers

Driver Status

  • Version 4.9.4-rhel
  • API Version 1.41
  • Kernel Version 4.18.0-553.16.1.el8_10.x86_64
  • OS Version rhel

do you have any ideas?

Regards;