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.47.0 docker pull icr.io/ibmz/cadvisor@sha256:057f404bdabff32aff8f6a3d95eabb85a18da8cf00b0fd04f9c8625fff27a09a Vulnerability Report03-13-2023
0.45.0 docker pull icr.io/ibmz/cadvisor@sha256:8464c9c1c02a59598691a08dfe37a90125d2db8fab83388ec08c7aba60e7e21a Vulnerability Report09-15-2022
0.44.0 docker pull icr.io/ibmz/cadvisor@sha256:290bb7a1c904da7febff1b6647dbb5ae95eb57379b1703a63ad1d77720c77f11 Vulnerability Report04-04-2022
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]