mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
15 lines
204 B
Go
15 lines
204 B
Go
package gopsutil
|
|
|
|
type Load struct{}
|
|
|
|
type LoadAvg struct {
|
|
Load1 float64 `json:"load1"`
|
|
Load5 float64 `json:"load5"`
|
|
Load15 float64 `json:"load15"`
|
|
}
|
|
|
|
func NewLoad() Load {
|
|
l := Load{}
|
|
return l
|
|
}
|