MCPcopy
hub / github.com/google/cadvisor / containerdContainerHandler

Struct containerdContainerHandler

lib/container/containerd/handler.go:38–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36)
37
38type 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
59var _ container.ContainerHandler = &containerdContainerHandler{}
60

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected