Documentation ¶
Index ¶
Constants ¶
View Source
const ( CPUser = 0 CPNice = 1 CPSys = 2 CPIntr = 3 CPIdle = 4 CPUStates = 5 )
sys/resource.h
View Source
const (
ClocksPerSec = 128
)
time.h
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CPUInfoStat ¶
type CPUInfoStat struct { CPU int32 `json:"cpu"` VendorID string `json:"vendor_id"` Family string `json:"family"` Model string `json:"model"` Stepping int32 `json:"stepping"` PhysicalID string `json:"physical_id"` CoreID string `json:"core_id"` Cores int32 `json:"cores"` ModelName string `json:"model_name"` Mhz float64 `json:"mhz"` CacheSize int32 `json:"cache_size"` Flags []string `json:"flags"` }
func (CPUInfoStat) String ¶
func (c CPUInfoStat) String() string
type CPUTimesStat ¶
type CPUTimesStat struct { CPU string `json:"cpu"` User float64 `json:"user"` System float64 `json:"system"` Idle float64 `json:"idle"` Nice float64 `json:"nice"` Iowait float64 `json:"iowait"` Irq float64 `json:"irq"` Softirq float64 `json:"softirq"` Steal float64 `json:"steal"` Guest float64 `json:"guest"` GuestNice float64 `json:"guest_nice"` Stolen float64 `json:"stolen"` }
func CPUTimes ¶
func CPUTimes(percpu bool) ([]CPUTimesStat, error)
func (CPUTimesStat) String ¶
func (c CPUTimesStat) String() string
Click to show internal directories.
Click to hide internal directories.