shirou_gopsutil/load/load_linux.go

81 lines
1.3 KiB
Go
Raw Normal View History

2014-04-18 15:34:47 +08:00
// +build linux
2014-12-30 21:09:05 +08:00
package load
2014-04-18 15:34:47 +08:00
import (
"io/ioutil"
"strconv"
"strings"
"github.com/shirou/gopsutil/internal/common"
2014-04-18 15:34:47 +08:00
)
func LoadAvg() (*LoadAvgStat, error) {
filename := common.HostProc("loadavg")
2014-04-18 15:34:47 +08:00
line, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
2014-04-18 15:34:47 +08:00
}
values := strings.Fields(string(line))
load1, err := strconv.ParseFloat(values[0], 64)
if err != nil {
return nil, err
2014-04-18 15:34:47 +08:00
}
load5, err := strconv.ParseFloat(values[1], 64)
if err != nil {
return nil, err
2014-04-18 15:34:47 +08:00
}
load15, err := strconv.ParseFloat(values[2], 64)
if err != nil {
return nil, err
2014-04-18 15:34:47 +08:00
}
ret := &LoadAvgStat{
2014-04-18 15:34:47 +08:00
Load1: load1,
Load5: load5,
Load15: load15,
}
return ret, nil
}
func Misc() (*MiscStat, error) {
filename := common.HostProc("stat")
lines, err := ioutil.ReadFile(filename)
if err != nil {
return nil, err
}
ret := &Misc{
ProcsRunning: pr,
ProcsBlocked: pb,
Ctxt: ctxt,
}
for _, line := range lines {
fields := strings.Fields(line)
if len(fields) != 2 {
continue
}
v, err := strconv.ParseInt(fields[1], 10, 64)
if err != nil {
continue
}
switch fields[0] {
case "procs_running":
ret.ProcessRunning = v
case "procs_blocked":
ret.ProcessBlocked = v
case "ctxt":
ret.Ctxt = v
default:
continue
}
}
return ret, nil
}