| 46 | var containerdCgroupRegexp = regexp.MustCompile(`([a-z0-9]{64})`) |
| 47 | |
| 48 | type containerdFactory struct { |
| 49 | machineInfoFactory info.MachineInfoFactory |
| 50 | client ContainerdClient |
| 51 | version string |
| 52 | // Information about the mounted cgroup subsystems. |
| 53 | cgroupSubsystems map[string]string |
| 54 | // Information about mounted filesystems. |
| 55 | fsInfo fs.FsInfo |
| 56 | includedMetrics container.MetricSet |
| 57 | } |
| 58 | |
| 59 | func (f *containerdFactory) String() string { |
| 60 | return k8sContainerdNamespace |
nothing calls this directly
no outgoing calls
no test coverage detected