1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00

25 lines
558 B
Go
Raw Normal View History

2014-04-22 09:44:22 +09:00
package gopsutil
2014-04-18 16:34:47 +09:00
import (
"runtime"
)
2014-04-30 15:32:05 +09:00
type CPUTimesStat struct {
2014-04-30 16:16:07 +09:00
CPU string `json:"cpu"`
User float32 `json:"user"`
System float32 `json:"system"`
Idle float32 `json:"idle"`
Nice float32 `json:"nice"`
Iowait float32 `json:"iowait"`
Irq float32 `json:"irq"`
Softirq float32 `json:"softirq"`
Steal float32 `json:"steal"`
Guest float32 `json:"guest"`
GuestNice float32 `json:"guest_nice"`
Stolen float32 `json:"stolen"`
2014-04-18 16:34:47 +09:00
}
2014-04-30 16:16:07 +09:00
func CPUCounts(logical bool) (int, error) {
2014-04-18 16:34:47 +09:00
return runtime.NumCPU(), nil
}