Update gopsutil godep dependency

Closes #219
This commit is contained in:
Cameron Sparr 2015-09-22 09:28:28 -07:00
parent 1cd2db9f8c
commit 0700e0cf94
3 changed files with 36 additions and 19 deletions

28
Godeps/Godeps.json generated
View File

@ -143,38 +143,38 @@
},
{
"ImportPath": "github.com/shirou/gopsutil/common",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/cpu",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/disk",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/docker",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/load",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/mem",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/shirou/gopsutil/net",
"Comment": "1.0.0-153-gc1313e7",
"Rev": "c1313e76341b18456212c5645d1daa7f132ac50e"
"Comment": "1.0.0-158-g0fd612e",
"Rev": "0fd612ec7b9079dc624ae4815acadf1903d82011"
},
{
"ImportPath": "github.com/streadway/amqp",

View File

@ -4,6 +4,7 @@ package docker
import (
"encoding/json"
"os"
"os/exec"
"path"
"strconv"
@ -46,9 +47,13 @@ func CgroupCPU(containerid string, base string) (*cpu.CPUTimesStat, error) {
if len(base) == 0 {
base = "/sys/fs/cgroup/cpuacct/docker"
}
path := path.Join(base, containerid, "cpuacct.stat")
statfile := path.Join(base, containerid, "cpuacct.stat")
lines, err := common.ReadLines(path)
if _, err := os.Stat(statfile); os.IsNotExist(err) {
statfile = path.Join("/sys/fs/cgroup/cpuacct/system.slice", "docker-" + containerid + ".scope", "cpuacct.stat")
}
lines, err := common.ReadLines(statfile)
if err != nil {
return nil, err
}
@ -84,12 +89,17 @@ func CgroupMem(containerid string, base string) (*CgroupMemStat, error) {
if len(base) == 0 {
base = "/sys/fs/cgroup/memory/docker"
}
path := path.Join(base, containerid, "memory.stat")
statfile := path.Join(base, containerid, "memory.stat")
if _, err := os.Stat(statfile); os.IsNotExist(err) {
statfile = path.Join("/sys/fs/cgroup/memory/system.slice", "docker-" + containerid + ".scope", "memory.stat")
}
// empty containerid means all cgroup
if len(containerid) == 0 {
containerid = "all"
}
lines, err := common.ReadLines(path)
lines, err := common.ReadLines(statfile)
if err != nil {
return nil, err
}

View File

@ -13,6 +13,8 @@ import (
func VirtualMemory() (*VirtualMemoryStat, error) {
filename := "/proc/meminfo"
lines, _ := common.ReadLines(filename)
// flag if MemAvailable is in /proc/meminfo (kernel 3.14+)
memavail := false
ret := &VirtualMemoryStat{}
for _, line := range lines {
@ -33,6 +35,9 @@ func VirtualMemory() (*VirtualMemoryStat, error) {
ret.Total = t * 1024
case "MemFree":
ret.Free = t * 1024
case "MemAvailable":
memavail = true
ret.Available = t * 1024
case "Buffers":
ret.Buffers = t * 1024
case "Cached":
@ -43,7 +48,9 @@ func VirtualMemory() (*VirtualMemoryStat, error) {
ret.Inactive = t * 1024
}
}
ret.Available = ret.Free + ret.Buffers + ret.Cached
if !memavail {
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