summaryrefslogtreecommitdiffstats
path: root/devices/cpu_cpu.go
blob: a1d20cd2b6d4565ad57cceeee751bfea4d255d2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package devices

import (
	"fmt"
	"time"

	psCpu "github.com/shirou/gopsutil/cpu"
)

func init() {
	f := func(cpus map[string]int, iv time.Duration, l bool) map[string]error {
		cpuCount, err := psCpu.Counts(l)
		if err != nil {
			return nil
		}
		formatString := "CPU%1d"
		if cpuCount > 10 {
			formatString = "CPU%02d"
		}
		vals, err := psCpu.Percent(iv, l)
		if err != nil {
			return map[string]error{"gopsutil": err}
		}
		for i := 0; i < len(vals); i++ {
			key := fmt.Sprintf(formatString, i)
			cpus[key] = int(vals[i])
		}
		return nil
	}
	RegisterCPU(f)
}