Documentation ¶
Index ¶
- type MockDiskUsage
- type MockPS
- func (m *MockPS) CPUTimes(perCPU, totalCPU bool) ([]cpu.TimesStat, error)
- func (m *MockPS) DiskIO(names []string) (map[string]disk.IOCountersStat, error)
- func (m *MockPS) DiskUsage(mountPointFilter []string, fstypeExclude []string) ([]*disk.UsageStat, []*disk.PartitionStat, error)
- func (m *MockPS) LoadAvg() (*load.AvgStat, error)
- func (m *MockPS) NetConnections() ([]net.ConnectionStat, error)
- func (m *MockPS) NetIO() ([]net.IOCountersStat, error)
- func (m *MockPS) NetProto() ([]net.ProtoCountersStat, error)
- func (m *MockPS) SwapStat() (*mem.SwapMemoryStat, error)
- func (m *MockPS) Temperature() ([]host.TemperatureStat, error)
- func (m *MockPS) VMStat() (*mem.VirtualMemoryStat, error)
- type MockPSDisk
- type PS
- type PSDiskDeps
- type SystemPS
- func (s *SystemPS) CPUTimes(perCPU, totalCPU bool) ([]cpu.TimesStat, error)
- func (s *SystemPS) DiskIO(names []string) (map[string]disk.IOCountersStat, error)
- func (s *SystemPS) DiskUsage(mountPointFilter []string, fstypeExclude []string) ([]*disk.UsageStat, []*disk.PartitionStat, error)
- func (s *SystemPS) NetConnections() ([]net.ConnectionStat, error)
- func (s *SystemPS) NetIO() ([]net.IOCountersStat, error)
- func (s *SystemPS) NetProto() ([]net.ProtoCountersStat, error)
- func (s *SystemPS) SwapStat() (*mem.SwapMemoryStat, error)
- func (s *SystemPS) Temperature() ([]host.TemperatureStat, error)
- func (s *SystemPS) VMStat() (*mem.VirtualMemoryStat, error)
- type SystemPSDisk
- type SystemStats
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockDiskUsage ¶
func (*MockDiskUsage) OSGetenv ¶
func (m *MockDiskUsage) OSGetenv(key string) string
func (*MockDiskUsage) PSDiskUsage ¶
func (m *MockDiskUsage) PSDiskUsage(path string) (*disk.UsageStat, error)
func (*MockDiskUsage) Partitions ¶
func (m *MockDiskUsage) Partitions(all bool) ([]disk.PartitionStat, error)
type MockPS ¶
type MockPS struct { mock.Mock PSDiskDeps }
func (*MockPS) NetConnections ¶
func (m *MockPS) NetConnections() ([]net.ConnectionStat, error)
func (*MockPS) Temperature ¶
func (m *MockPS) Temperature() ([]host.TemperatureStat, error)
type MockPSDisk ¶
type PS ¶
type PS interface { CPUTimes(perCPU, totalCPU bool) ([]cpu.TimesStat, error) DiskUsage(mountPointFilter []string, fstypeExclude []string) ([]*disk.UsageStat, []*disk.PartitionStat, error) NetIO() ([]net.IOCountersStat, error) NetProto() ([]net.ProtoCountersStat, error) DiskIO(names []string) (map[string]disk.IOCountersStat, error) VMStat() (*mem.VirtualMemoryStat, error) SwapStat() (*mem.SwapMemoryStat, error) NetConnections() ([]net.ConnectionStat, error) Temperature() ([]host.TemperatureStat, error) }
type PSDiskDeps ¶
type SystemPS ¶
type SystemPS struct {
PSDiskDeps
}
func NewSystemPS ¶
func NewSystemPS() *SystemPS
func (*SystemPS) NetConnections ¶
func (s *SystemPS) NetConnections() ([]net.ConnectionStat, error)
func (*SystemPS) Temperature ¶
func (s *SystemPS) Temperature() ([]host.TemperatureStat, error)
type SystemPSDisk ¶
type SystemPSDisk struct{}
func (*SystemPSDisk) OSGetenv ¶
func (s *SystemPSDisk) OSGetenv(key string) string
func (*SystemPSDisk) PSDiskUsage ¶
func (s *SystemPSDisk) PSDiskUsage(path string) (*disk.UsageStat, error)
func (*SystemPSDisk) Partitions ¶
func (s *SystemPSDisk) Partitions(all bool) ([]disk.PartitionStat, error)
type SystemStats ¶
type SystemStats struct{}
func (*SystemStats) Description ¶
func (_ *SystemStats) Description() string
func (*SystemStats) Gather ¶
func (_ *SystemStats) Gather(acc telegraf.Accumulator) error
func (*SystemStats) SampleConfig ¶
func (_ *SystemStats) SampleConfig() string
Click to show internal directories.
Click to hide internal directories.