Documentation ¶
Overview ¶
Package fs provides filesystem statistics
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetFsStats ¶
func GetFsStats(container *docker.Container) (map[string]wrapper.FilesystemInterface, error)
GetFsStats returns filesystem statistics for a given container
Types ¶
type DeviceInfo ¶
DeviceInfo holds device name and major and minor numbers
type DiskStats ¶
type DiskStats struct { ReadsCompleted uint64 ReadsMerged uint64 SectorsRead uint64 ReadTime uint64 WritesCompleted uint64 WritesMerged uint64 SectorsWritten uint64 WriteTime uint64 IoInProgress uint64 IoTime uint64 WeightedIoTime uint64 }
DiskStats holds disk statistics
type DiskUsageCollector ¶
func (*DiskUsageCollector) Init ¶
func (c *DiskUsageCollector) Init()
type Fs ¶
type Fs struct { DeviceInfo Type FsType Capacity uint64 Free uint64 Available uint64 Inodes uint64 InodesFree uint64 DiskStats DiskStats }
Fs holds information about device (name, minor, major), type, capacity, etc.
type FsInfo ¶
type FsInfo interface { // Returns capacity and free space, in bytes, of all the ext2, ext3, ext4 filesystems on the host. GetGlobalFsInfo() ([]Fs, error) // Returns capacity and free space, in bytes, of the set of mounts passed. GetFsInfoForPath(mountSet map[string]struct{}) ([]Fs, error) // Returns number of bytes occupied by 'dir'. GetDirUsage(dir string, timeout time.Duration) (uint64, error) // Returns the block device info of the filesystem on which 'dir' resides. GetDirFsDevice(dir string) (*DeviceInfo, error) }
FsInfo specifies methods to get filesystem information and statistics
type FsType ¶
type FsType string
FsType is a docker filesystem type, supported: zfs, vfs and devicemapper
type RealFsInfo ¶
type RealFsInfo struct {
// contains filtered or unexported fields
}
RealFsInfo holds information about filesystem (e.g. partitions)
func (*RealFsInfo) GetDirFsDevice ¶
func (self *RealFsInfo) GetDirFsDevice(dir string) (*DeviceInfo, error)
GetDirFsDevice returns the block device info of the filesystem on which 'dir' resides.
func (*RealFsInfo) GetDirUsage ¶
GetDirUsage returns number of bytes occupied by 'dir'.
func (*RealFsInfo) GetFsInfoForPath ¶
func (self *RealFsInfo) GetFsInfoForPath(mountSet map[string]struct{}) ([]Fs, error)
GetFsInfoForPath returns capacity and free space, in bytes, of the set of mounts passed.
func (*RealFsInfo) GetGlobalFsInfo ¶
func (self *RealFsInfo) GetGlobalFsInfo() ([]Fs, error)
GetGlobalFsInfo returns capacity and free space, in bytes, of all the ext2, ext3, ext4 filesystems on the host.