shirou_gopsutil/load/load_freebsd.go

63 lines
1.0 KiB
Go
Raw Normal View History

2014-04-18 15:34:47 +08:00
// +build freebsd
2014-12-30 21:09:05 +08:00
package load
2014-04-18 15:34:47 +08:00
import (
"os/exec"
2014-04-18 15:34:47 +08:00
"strconv"
"strings"
2015-10-19 23:04:57 +08:00
"github.com/shirou/gopsutil/internal/common"
2014-04-18 15:34:47 +08:00
)
2014-05-20 18:29:41 +08:00
func LoadAvg() (*LoadAvgStat, error) {
values, err := common.DoSysctrl("vm.loadavg")
2014-04-18 15:34:47 +08:00
if err != nil {
2014-05-20 18:29:41 +08:00
return nil, err
2014-04-18 15:34:47 +08:00
}
2014-04-22 09:12:01 +08:00
load1, err := strconv.ParseFloat(values[0], 64)
2014-04-18 15:34:47 +08:00
if err != nil {
2014-05-20 18:29:41 +08:00
return nil, err
2014-04-18 15:34:47 +08:00
}
2014-04-22 09:12:01 +08:00
load5, err := strconv.ParseFloat(values[1], 64)
2014-04-18 15:34:47 +08:00
if err != nil {
2014-05-20 18:29:41 +08:00
return nil, err
2014-04-18 15:34:47 +08:00
}
2014-04-22 09:12:01 +08:00
load15, err := strconv.ParseFloat(values[2], 64)
2014-04-18 15:34:47 +08:00
if err != nil {
2014-05-20 18:29:41 +08:00
return nil, err
2014-04-18 15:34:47 +08:00
}
2014-05-20 18:29:41 +08:00
ret := &LoadAvgStat{
2014-04-22 09:12:01 +08:00
Load1: float64(load1),
Load5: float64(load5),
Load15: float64(load15),
2014-04-18 15:34:47 +08:00
}
return ret, nil
}
func Misc() (*MiscStat, error) {
bin, err := exec.LookPath("ps")
if err != nil {
return nil, err
}
out, err := invoke.Command(bin, "axo", "state")
if err != nil {
return nil, err
}
lines := strings.Split(string(out), "\n")
ret := MiscStat{}
for _, l := range lines {
if strings.Contains(l, "R") {
ret.ProcsRunning += 1
} else if strings.Contains(l, "D") {
ret.ProcsBlocked += 1
}
}
return &ret, nil
}