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.47.0 docker pull icr.io/ibmz/cadvisor@sha256:6d4f45b83af8d28ce02bb498a4cf51ef37fdf84ac241faa85b7458247a08fb28 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
0.42.0 docker pull icr.io/ibmz/cadvisor@sha256:7dac1e929b8abaaac7371b6a63c7af2ae5a5a650399d1fc49805966b0a1b5788 Vulnerability Report10-26-2021
0.39.3 docker pull icr.io/ibmz/cadvisor@sha256:a7415e1d88999859750302123f79f828a280195652ff884db8b13977f273532b Vulnerability Report02-17-2022
0.37.5 docker pull icr.io/ibmz/cadvisor@sha256:138130ea1de8dbf82d860a893facfca96f157b824895824e082c91ac556257b6 Vulnerability Report08-26-2021
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]