Return to Image List

cadvisor

cAdvisor

cAdvisor (Container Advisor) provides container users an understanding of the resource usage and performance characteristics of their running containers. It is a running daemon that collects, aggregates, processes, and exports information about running containers. Specifically, for each container it keeps resource isolation parameters, historical resource usage, and histograms of complete historical resource usage. This data is exported by container and machine-wide.

See github.com/google/cadvisor for more information

This image is built by IBM to run on the IBM Z architecture and is not affiliated with any other community that provides a version of this image.


License

View license information here

As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).

As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.


Versions

Use the pull string below for the version of this image you require.
0.49.1 docker pull icr.io/ibmz/cadvisor@sha256:908ca34627bbd1cb979abfa329fbd1bdfce88eff83c3bce6a30dcbf285c4cea2 Vulnerability Report09-04-2024
0.49.1-alpine3.17 docker pull icr.io/ibmz/cadvisor@sha256:0a438440c52b13b56bcb5e0520e078cc811386b4f6a90bae34055393c2d4daa7 Vulnerability Report02-25-2025
Version Pull String Security (IBM Cloud) Created

Usage Notes

Although bind-mounts are generally disabled for security purposes; CAdvisor requires access to some system directories that have been explicitly made available by direct bind mount on the zCX system.

By default the cAdvisor UI runs on port 8080, in the following command the port is mapped to the system 8080 to allow the UI to be available through a browser at: host-ip:8080

docker run -v /proc:/rootfs/proc:ro -v /media:/rootfs/media:ro \
-v /var/run/docker.sock:/var/run/docker.sock:ro -v /sys:/sys:ro \
-v /var/lib/docker/:/var/lib/docker:ro -v /dev/disk/:/dev/disk:ro \
-p 8080:8080 -d --name=cadvisor  icr.io/ibmz/cadvisor:[tag]