2015-03-11 22:06:00 +08:00
|
|
|
// +build linux freebsd darwin
|
2015-03-11 22:00:06 +08:00
|
|
|
|
|
|
|
package cpu
|
|
|
|
|
2015-12-16 04:22:30 +08:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"time"
|
|
|
|
)
|
2015-03-11 22:00:06 +08:00
|
|
|
|
2016-03-22 22:09:12 +08:00
|
|
|
func Percent(interval time.Duration, percpu bool) ([]float64, error) {
|
|
|
|
getAllBusy := func(t TimesStat) (float64, float64) {
|
2015-03-11 22:00:06 +08:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2016-03-22 22:09:12 +08:00
|
|
|
calculate := func(t1, t2 TimesStat) float64 {
|
2015-03-11 22:00:06 +08:00
|
|
|
t1All, t1Busy := getAllBusy(t1)
|
|
|
|
t2All, t2Busy := getAllBusy(t2)
|
|
|
|
|
|
|
|
if t2Busy <= t1Busy {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
if t2All <= t1All {
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
return (t2Busy - t1Busy) / (t2All - t1All) * 100
|
|
|
|
}
|
|
|
|
|
2015-12-16 04:22:30 +08:00
|
|
|
// Get CPU usage at the start of the interval.
|
2016-03-22 22:09:12 +08:00
|
|
|
cpuTimes1, err := Times(percpu)
|
2015-03-11 22:00:06 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if interval > 0 {
|
|
|
|
time.Sleep(interval)
|
|
|
|
}
|
|
|
|
|
2015-12-16 04:22:30 +08:00
|
|
|
// And at the end of the interval.
|
2016-03-22 22:09:12 +08:00
|
|
|
cpuTimes2, err := Times(percpu)
|
2015-12-16 04:22:30 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure the CPU measurements have the same length.
|
|
|
|
if len(cpuTimes1) != len(cpuTimes2) {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"received two CPU counts: %d != %d",
|
|
|
|
len(cpuTimes1), len(cpuTimes2),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := make([]float64, len(cpuTimes1))
|
|
|
|
for i, t := range cpuTimes2 {
|
|
|
|
ret[i] = calculate(cpuTimes1[i], t)
|
2015-03-11 22:00:06 +08:00
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|