mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-29 13:49:21 +08:00
91 lines
2.1 KiB
Go
91 lines
2.1 KiB
Go
![]() |
// +build linux,freebsd,darwin
|
||
|
|
||
|
package cpu
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"strconv"
|
||
|
"strings"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func CPUPercent(interval time.Duration, percpu bool) ([]float64, error) {
|
||
|
getAllBusy := func(t CPUTimesStat) (float64, float64) {
|
||
|
busy := t.User + t.System + t.Nice + t.Iowait + t.Irq +
|
||
|
t.Softirq + t.Steal + t.Guest + t.GuestNice + t.Stolen
|
||
|
return busy + t.Idle, busy
|
||
|
}
|
||
|
|
||
|
calculate := func(t1, t2 CPUTimesStat) float64 {
|
||
|
t1All, t1Busy := getAllBusy(t1)
|
||
|
t2All, t2Busy := getAllBusy(t2)
|
||
|
|
||
|
if t2Busy <= t1Busy {
|
||
|
return 0
|
||
|
}
|
||
|
if t2All <= t1All {
|
||
|
return 1
|
||
|
}
|
||
|
return (t2Busy - t1Busy) / (t2All - t1All) * 100
|
||
|
}
|
||
|
|
||
|
cpuTimes, err := CPUTimes(percpu)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if interval > 0 {
|
||
|
if !percpu {
|
||
|
lastCPUTimes = cpuTimes
|
||
|
} else {
|
||
|
lastPerCPUTimes = cpuTimes
|
||
|
}
|
||
|
time.Sleep(interval)
|
||
|
cpuTimes, err = CPUTimes(percpu)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ret := make([]float64, len(cpuTimes))
|
||
|
if !percpu {
|
||
|
ret[0] = calculate(lastCPUTimes[0], cpuTimes[0])
|
||
|
lastCPUTimes = cpuTimes
|
||
|
} else {
|
||
|
for i, t := range cpuTimes {
|
||
|
ret[i] = calculate(lastPerCPUTimes[i], t)
|
||
|
}
|
||
|
lastPerCPUTimes = cpuTimes
|
||
|
}
|
||
|
return ret, nil
|
||
|
}
|
||
|
|
||
|
func (c CPUTimesStat) String() string {
|
||
|
v := []string{
|
||
|
`"cpu":"` + c.CPU + `"`,
|
||
|
`"user":` + strconv.FormatFloat(c.User, 'f', 1, 64),
|
||
|
`"system":` + strconv.FormatFloat(c.System, 'f', 1, 64),
|
||
|
`"idle":` + strconv.FormatFloat(c.Idle, 'f', 1, 64),
|
||
|
`"nice":` + strconv.FormatFloat(c.Nice, 'f', 1, 64),
|
||
|
`"iowait":` + strconv.FormatFloat(c.Iowait, 'f', 1, 64),
|
||
|
`"irq":` + strconv.FormatFloat(c.Irq, 'f', 1, 64),
|
||
|
`"softirq":` + strconv.FormatFloat(c.Softirq, 'f', 1, 64),
|
||
|
`"steal":` + strconv.FormatFloat(c.Steal, 'f', 1, 64),
|
||
|
`"guest":` + strconv.FormatFloat(c.Guest, 'f', 1, 64),
|
||
|
`"guest_nice":` + strconv.FormatFloat(c.GuestNice, 'f', 1, 64),
|
||
|
`"stolen":` + strconv.FormatFloat(c.Stolen, 'f', 1, 64),
|
||
|
}
|
||
|
|
||
|
return `{` + strings.Join(v, ",") + `}`
|
||
|
}
|
||
|
|
||
|
func (c CPUInfoStat) String() string {
|
||
|
s, _ := json.Marshal(c)
|
||
|
return string(s)
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
lastCPUTimes, _ = CPUTimes(false)
|
||
|
lastPerCPUTimes, _ = CPUTimes(true)
|
||
|
}
|