mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-04 10:41:14 +00:00
86 lines
2.2 KiB
Go
86 lines
2.2 KiB
Go
package host
|
|
|
|
import (
|
|
"fmt"
|
|
"os/exec"
|
|
"regexp"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/weaveworks/scope/report"
|
|
)
|
|
|
|
var (
|
|
unameRe = regexp.MustCompile(`Darwin Kernel Version ([0-9\.]+)\:`)
|
|
loadRe = regexp.MustCompile(`load averages: ([0-9\.]+) ([0-9\.]+) ([0-9\.]+)`)
|
|
uptimeRe = regexp.MustCompile(`up ([0-9]+) day[s]*,[ ]+([0-9]+)\:([0-9][0-9])`)
|
|
)
|
|
|
|
// GetKernelVersion returns the kernel version as reported by uname.
|
|
var GetKernelVersion = func() (string, error) {
|
|
out, err := exec.Command("uname", "-v").CombinedOutput()
|
|
if err != nil {
|
|
return "Darwin unknown", err
|
|
}
|
|
matches := unameRe.FindAllStringSubmatch(string(out), -1)
|
|
if matches == nil || len(matches) < 1 || len(matches[0]) < 1 {
|
|
return "Darwin unknown", nil
|
|
}
|
|
return fmt.Sprintf("Darwin %s", matches[0][1]), nil
|
|
}
|
|
|
|
// GetLoad returns the current load averages as metrics.
|
|
var GetLoad = func(now time.Time) report.Metrics {
|
|
out, err := exec.Command("w").CombinedOutput()
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
matches := loadRe.FindAllStringSubmatch(string(out), -1)
|
|
if matches == nil || len(matches) < 1 || len(matches[0]) < 4 {
|
|
return nil
|
|
}
|
|
|
|
one, err := strconv.ParseFloat(matches[0][1], 64)
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
return report.Metrics{
|
|
Load1: report.MakeMetric().Add(now, one),
|
|
}
|
|
}
|
|
|
|
// GetUptime returns the uptime of the host.
|
|
var GetUptime = func() (time.Duration, error) {
|
|
out, err := exec.Command("w").CombinedOutput()
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
matches := uptimeRe.FindAllStringSubmatch(string(out), -1)
|
|
if matches == nil || len(matches) < 1 || len(matches[0]) < 4 {
|
|
return 0, err
|
|
}
|
|
d, err := strconv.Atoi(matches[0][1])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
h, err := strconv.Atoi(matches[0][2])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
m, err := strconv.Atoi(matches[0][3])
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return (time.Duration(d) * 24 * time.Hour) + (time.Duration(h) * time.Hour) + (time.Duration(m) * time.Minute), nil
|
|
}
|
|
|
|
// GetCPUUsagePercent returns the percent cpu usage and max (ie #cpus * 100)
|
|
var GetCPUUsagePercent = func() (float64, float64) {
|
|
return 0.0, 0.0
|
|
}
|
|
|
|
// GetMemoryUsageBytes returns the bytes memory usage and max
|
|
var GetMemoryUsageBytes = func() (float64, float64) {
|
|
return 0.0, 0.0
|
|
}
|