package
Version:
v1.0.0
Opens a new window with list of versions in this module.
Published: Mar 20, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 8
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type DiskStat struct {
Path string `json:"path"`
MountPoint string `json:"mount_point"`
TotalGB float32 `json:"total_gb"`
UsedGB float32 `json:"used_gb"`
}
type MemoryStat struct {
TotalGB float32 `json:"total_gb"`
UsedGB float32 `json:"used_gb"`
CachedGB float32 `json:"cached_gb"`
}
type NetStat struct {
SentKB uint64 `json:"sent_kb"`
RecvKB uint64 `json:"recv_kb"`
}
type ResourceStats struct {
CpuUsagePercent uint8 `json:"cpu_used_percent"`
MemStat MemoryStat `json:"memory"`
DiskStats []DiskStat `json:"disks"`
NetStat NetStat `json:"network"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.