| 36 | ) |
| 37 | |
| 38 | type containerdContainerHandler struct { |
| 39 | machineInfoFactory info.MachineInfoFactory |
| 40 | // Absolute path to the cgroup hierarchies of this container. |
| 41 | // (e.g.: "cpu" -> "/sys/fs/cgroup/cpu/test") |
| 42 | cgroupPaths map[string]string |
| 43 | fsInfo fs.FsInfo |
| 44 | // Metadata associated with the container. |
| 45 | reference info.ContainerReference |
| 46 | envs map[string]string |
| 47 | labels map[string]string |
| 48 | // Time at which this container was created. |
| 49 | creationTime time.Time |
| 50 | // Image name used for this container. |
| 51 | image string |
| 52 | // Filesystem handler. |
| 53 | includedMetrics container.MetricSet |
| 54 | |
| 55 | libcontainerHandler *containerlibcontainer.Handler |
| 56 | client ContainerdClient |
| 57 | } |
| 58 | |
| 59 | var _ container.ContainerHandler = &containerdContainerHandler{} |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected