shirou_gopsutil/mem_linux.go

62 lines
1.4 KiB
Go
Raw Normal View History

2014-04-22 11:04:16 +08:00
// +build linux
2014-04-18 15:34:47 +08:00
2014-04-22 08:44:22 +08:00
package gopsutil
2014-04-18 15:34:47 +08:00
import (
"strings"
2014-04-18 15:34:47 +08:00
"syscall"
)
func VirtualMemory() (*VirtualMemoryStat, error) {
filename := "/proc/meminfo"
lines, _ := readLines(filename)
ret := &VirtualMemoryStat{}
for _, line := range lines {
fields := strings.Split(line, ":")
if len(fields) != 2 {
continue
}
key := strings.TrimSpace(fields[0])
value := strings.TrimSpace(fields[1])
value = strings.Replace(value, " kB", "", -1)
switch key {
case "MemTotal":
ret.Total = mustParseUint64(value) * 1000
case "MemFree":
ret.Free = mustParseUint64(value) * 1000
case "Buffers":
ret.Buffers = mustParseUint64(value) * 1000
case "Cached":
ret.Cached = mustParseUint64(value) * 1000
case "Active":
ret.Active = mustParseUint64(value) * 1000
case "Inactive":
ret.Inactive = mustParseUint64(value) * 1000
}
}
2014-04-18 15:34:47 +08:00
ret.Available = ret.Free + ret.Buffers + ret.Cached
ret.Used = ret.Total - ret.Free
ret.UsedPercent = float64(ret.Total-ret.Available) / float64(ret.Total) * 100.0
return ret, nil
}
func SwapMemory() (*SwapMemoryStat, error) {
2014-04-18 15:34:47 +08:00
sysinfo := &syscall.Sysinfo_t{}
if err := syscall.Sysinfo(sysinfo); err != nil {
return nil, err
}
ret := &SwapMemoryStat{
2014-05-13 23:12:17 +08:00
Total: uint64(sysinfo.Totalswap),
Free: uint64(sysinfo.Freeswap),
2014-04-18 15:34:47 +08:00
}
ret.Used = ret.Total - ret.Free
ret.UsedPercent = float64(ret.Total-ret.Free) / float64(ret.Total) * 100.0
return ret, nil
}