2014-04-18 15:34:47 +08:00
|
|
|
// +build linux
|
|
|
|
|
2014-12-30 21:09:05 +08:00
|
|
|
package cpu
|
2014-04-18 15:34:47 +08:00
|
|
|
|
|
|
|
import (
|
2014-04-24 15:15:57 +08:00
|
|
|
"errors"
|
2014-04-18 15:34:47 +08:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
2014-11-27 09:25:14 +08:00
|
|
|
|
|
|
|
common "github.com/shirou/gopsutil/common"
|
2014-04-18 15:34:47 +08:00
|
|
|
)
|
|
|
|
|
2014-04-30 15:16:07 +08:00
|
|
|
func CPUTimes(percpu bool) ([]CPUTimesStat, error) {
|
2014-04-18 15:34:47 +08:00
|
|
|
filename := "/proc/stat"
|
2015-01-13 18:32:25 +08:00
|
|
|
var lines = []string{}
|
2014-11-02 08:14:26 +08:00
|
|
|
if percpu {
|
2015-01-13 18:32:25 +08:00
|
|
|
var startIdx uint = 1
|
|
|
|
for {
|
|
|
|
linen, _ := common.ReadLinesOffsetN(filename, startIdx, 1)
|
|
|
|
line := linen[0]
|
|
|
|
if !strings.HasPrefix(line, "cpu") {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
lines = append(lines, line)
|
|
|
|
startIdx += 1
|
|
|
|
}
|
2014-11-02 08:14:26 +08:00
|
|
|
} else {
|
2014-11-27 09:25:14 +08:00
|
|
|
lines, _ = common.ReadLinesOffsetN(filename, 0, 1)
|
2014-11-02 08:14:26 +08:00
|
|
|
}
|
2014-05-01 11:47:43 +08:00
|
|
|
|
|
|
|
ret := make([]CPUTimesStat, 0, len(lines))
|
|
|
|
|
2014-04-18 15:34:47 +08:00
|
|
|
for _, line := range lines {
|
2014-04-24 15:15:57 +08:00
|
|
|
ct, err := parseStatLine(line)
|
|
|
|
if err != nil {
|
2014-04-18 15:34:47 +08:00
|
|
|
continue
|
|
|
|
}
|
2014-05-01 11:01:30 +08:00
|
|
|
ret = append(ret, *ct)
|
2014-04-18 15:34:47 +08:00
|
|
|
|
2014-04-24 15:15:57 +08:00
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|
2014-04-18 15:34:47 +08:00
|
|
|
|
2014-05-16 17:12:18 +08:00
|
|
|
func CPUInfo() ([]CPUInfoStat, error) {
|
|
|
|
filename := "/proc/cpuinfo"
|
2014-11-27 09:25:14 +08:00
|
|
|
lines, _ := common.ReadLines(filename)
|
2014-05-16 17:12:18 +08:00
|
|
|
|
|
|
|
var ret []CPUInfoStat
|
|
|
|
|
|
|
|
var c CPUInfoStat
|
|
|
|
for _, line := range lines {
|
|
|
|
fields := strings.Split(line, ":")
|
2014-05-16 17:39:17 +08:00
|
|
|
if len(fields) < 2 {
|
2014-05-16 17:49:50 +08:00
|
|
|
if c.VendorID != "" {
|
2014-05-16 17:12:18 +08:00
|
|
|
ret = append(ret, c)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
key := strings.TrimSpace(fields[0])
|
|
|
|
value := strings.TrimSpace(fields[1])
|
|
|
|
|
|
|
|
switch key {
|
|
|
|
case "processor":
|
|
|
|
c = CPUInfoStat{}
|
2015-02-13 21:45:12 +08:00
|
|
|
t, err := strconv.ParseInt(value, 10, 64)
|
2014-09-19 21:41:29 +08:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
c.CPU = int32(t)
|
2014-05-16 17:12:18 +08:00
|
|
|
case "vendor_id":
|
2014-05-16 17:39:17 +08:00
|
|
|
c.VendorID = value
|
2014-05-16 17:12:18 +08:00
|
|
|
case "cpu family":
|
|
|
|
c.Family = value
|
|
|
|
case "model":
|
|
|
|
c.Model = value
|
|
|
|
case "model name":
|
|
|
|
c.ModelName = value
|
|
|
|
case "stepping":
|
2015-02-13 21:45:12 +08:00
|
|
|
t, err := strconv.ParseInt(value, 10, 64)
|
2014-09-19 21:41:29 +08:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
c.Stepping = int32(t)
|
2014-05-16 17:12:18 +08:00
|
|
|
case "cpu MHz":
|
2014-09-19 21:41:29 +08:00
|
|
|
t, err := strconv.ParseFloat(value, 64)
|
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
c.Mhz = t
|
2014-05-16 17:12:18 +08:00
|
|
|
case "cache size":
|
2015-02-13 21:45:12 +08:00
|
|
|
t, err := strconv.ParseInt(strings.Replace(value, " KB", "", 1), 10, 64)
|
2014-09-19 21:41:29 +08:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
c.CacheSize = int32(t)
|
2014-05-16 17:12:18 +08:00
|
|
|
case "physical id":
|
|
|
|
c.PhysicalID = value
|
|
|
|
case "core id":
|
|
|
|
c.CoreID = value
|
|
|
|
case "cpu cores":
|
2015-02-13 21:45:12 +08:00
|
|
|
t, err := strconv.ParseInt(value, 10, 64)
|
2014-09-19 21:41:29 +08:00
|
|
|
if err != nil {
|
|
|
|
return ret, err
|
|
|
|
}
|
|
|
|
c.Cores = int32(t)
|
2014-05-16 17:12:18 +08:00
|
|
|
case "flags":
|
|
|
|
c.Flags = strings.Split(value, ",")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2014-05-01 11:01:30 +08:00
|
|
|
func parseStatLine(line string) (*CPUTimesStat, error) {
|
2014-04-24 15:15:57 +08:00
|
|
|
fields := strings.Fields(line)
|
|
|
|
|
|
|
|
if strings.HasPrefix(fields[0], "cpu") == false {
|
2014-04-30 15:16:07 +08:00
|
|
|
// return CPUTimesStat{}, e
|
2014-05-01 11:01:30 +08:00
|
|
|
return nil, errors.New("not contain cpu")
|
2014-04-18 15:34:47 +08:00
|
|
|
}
|
|
|
|
|
2014-04-24 15:15:57 +08:00
|
|
|
cpu := fields[0]
|
|
|
|
if cpu == "cpu" {
|
|
|
|
cpu = "cpu-total"
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
user, err := strconv.ParseFloat(fields[1], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
nice, err := strconv.ParseFloat(fields[2], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
system, err := strconv.ParseFloat(fields[3], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
idle, err := strconv.ParseFloat(fields[4], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
iowait, err := strconv.ParseFloat(fields[5], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
irq, err := strconv.ParseFloat(fields[6], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
softirq, err := strconv.ParseFloat(fields[7], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
stolen, err := strconv.ParseFloat(fields[8], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 13:55:42 +08:00
|
|
|
|
2015-02-13 21:45:12 +08:00
|
|
|
cpu_tick := float64(100) // TODO: how to get _SC_CLK_TCK ?
|
2014-05-01 11:01:30 +08:00
|
|
|
ct := &CPUTimesStat{
|
2014-04-30 15:16:07 +08:00
|
|
|
CPU: cpu,
|
2015-02-13 21:45:12 +08:00
|
|
|
User: float64(user) / cpu_tick,
|
|
|
|
Nice: float64(nice) / cpu_tick,
|
|
|
|
System: float64(system) / cpu_tick,
|
|
|
|
Idle: float64(idle) / cpu_tick,
|
|
|
|
Iowait: float64(iowait) / cpu_tick,
|
|
|
|
Irq: float64(irq) / cpu_tick,
|
|
|
|
Softirq: float64(softirq) / cpu_tick,
|
|
|
|
Stolen: float64(stolen) / cpu_tick,
|
2014-04-24 15:15:57 +08:00
|
|
|
}
|
|
|
|
if len(fields) > 9 { // Linux >= 2.6.11
|
2015-02-13 21:45:12 +08:00
|
|
|
steal, err := strconv.ParseFloat(fields[9], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
ct.Steal = float64(steal)
|
2014-04-24 15:15:57 +08:00
|
|
|
}
|
|
|
|
if len(fields) > 10 { // Linux >= 2.6.24
|
2015-02-13 21:45:12 +08:00
|
|
|
guest, err := strconv.ParseFloat(fields[10], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
ct.Guest = float64(guest)
|
2014-04-24 15:15:57 +08:00
|
|
|
}
|
|
|
|
if len(fields) > 11 { // Linux >= 3.2.0
|
2015-02-13 21:45:12 +08:00
|
|
|
guestNice, err := strconv.ParseFloat(fields[11], 64)
|
2014-09-20 09:22:41 +08:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-02-13 21:45:12 +08:00
|
|
|
ct.GuestNice = float64(guestNice)
|
2014-04-24 15:15:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ct, nil
|
2014-04-18 15:34:47 +08:00
|
|
|
}
|