When switching from docker to containerd as my container runtime in Kubernetes, I noticed that container_fs_usage_bytes metrics were no longer being exported for my containers.
It looks like disk usage metrics aren't implemented for containerd, as noted by this comment: https://github.com/google/cadvisor/blob/v0.38.6/container/containerd/handler.go#L164-L165.
Disk usage is a pretty important metric to monitor, so I think, if possible, this should be added.
When switching from docker to containerd as my container runtime in Kubernetes, I noticed that
container_fs_usage_bytesmetrics were no longer being exported for my containers.It looks like disk usage metrics aren't implemented for containerd, as noted by this comment: https://github.com/google/cadvisor/blob/v0.38.6/container/containerd/handler.go#L164-L165.
Disk usage is a pretty important metric to monitor, so I think, if possible, this should be added.