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

Struct dockerFactory

container/docker/factory.go:108–133  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

106)
107
108type dockerFactory struct {
109 machineInfoFactory info.MachineInfoFactory
110
111 storageDriver StorageDriver
112 storageDir string
113
114 client *dclient.Client
115 containerdClient containerd.ContainerdClient
116
117 // Information about the mounted cgroup subsystems.
118 cgroupSubsystems map[string]string
119
120 // Information about mounted filesystems.
121 fsInfo fs.FsInfo
122
123 dockerVersion []int
124
125 dockerAPIVersion []int
126
127 includedMetrics container.MetricSet
128
129 thinPoolName string
130 thinPoolWatcher *devicemapper.ThinPoolWatcher
131
132 zfsWatcher *zfs.ZfsWatcher
133}
134
135func (f *dockerFactory) String() string {
136 return DockerNamespace

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected