You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gopsutil/load.go

8 lines
140 B
Go

package gopsutil
11 years ago
type LoadAvgStat struct {
11 years ago
Load1 float64 `json:"load1"`
Load5 float64 `json:"load5"`
Load15 float64 `json:"load15"`
}