const CrioSocketSuffix … // CapacityFromMachineInfo returns the capacity of the resources from the machine info. func CapacityFromMachineInfo(info *cadvisorapi.MachineInfo) v1.ResourceList { … } // EphemeralStorageCapacityFromFsInfo returns the capacity of the ephemeral storage from the FsInfo. func EphemeralStorageCapacityFromFsInfo(info cadvisorapi2.FsInfo) v1.ResourceList { … } // UsingLegacyCadvisorStats returns true if container stats are provided by cadvisor instead of through the CRI. // CRI integrations should get container metrics via CRI. // TODO: cri-o relies on cadvisor as a temporary workaround. The code should // be removed. Related issue: // https://github.com/kubernetes/kubernetes/issues/51798 func UsingLegacyCadvisorStats(runtimeEndpoint string) bool { … }