| 106 | ) |
| 107 | |
| 108 | type 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 | |
| 135 | func (f *dockerFactory) String() string { |
| 136 | return DockerNamespace |
nothing calls this directly
no outgoing calls
no test coverage detected