コード例 #1
0
ファイル: mem.go プロジェクト: youhong316/acadock-monitoring
func readMemoryCgroupInt64(id, file string) (int64, error) {
	path := config.CgroupPath("memory", id) + "/" + file
	f, err := os.Open(path)
	if err != nil {
		log.Println("Error while opening:", err)
		return -1, err
	}
	defer f.Close()

	buffer := make([]byte, 16)
	n, err := f.Read(buffer)
	if err != nil {
		log.Println("Error while reading ", path, ":", err)
		return -1, err
	}

	buffer = buffer[:n-1]
	val, err := strconv.ParseInt(string(buffer), 10, 64)
	if err != nil {
		log.Println("Error while parsing ", string(buffer), " : ", err)
		return -1, err
	}

	return val, nil
}
コード例 #2
0
ファイル: path.go プロジェクト: youhong316/acadock-monitoring
func ExpandId(id string) (string, error) {
	fullId, err := expandIdFromCache(id)
	if err == nil {
		return fullId, nil
	}
	if err != IdNotInCache {
		return "", errgo.Mask(err)
	}

	dir := filepath.Dir(config.CgroupPath("memory", id))
	switch config.ENV["CGROUP_SOURCE"] {
	case "systemd":
		id, err = expandSystemdId(dir, id)
	case "docker":
		id, err = expandDockerId(dir, id)
	default:
		panic("not a known CGROUP SOURCE")
	}
	if err != nil {
		return "", errgo.Mask(err)
	}

	containerIdsCache = append(containerIdsCache, id)
	return id, nil
}
コード例 #3
0
ファイル: mem.go プロジェクト: whollacsek/acadock-monitoring
func GetUsage(id string) (int64, error) {
	id, err := docker.ExpandId(id)
	if err != nil {
		log.Println("Error when expanding id:", err)
		return 0, err
	}

	path := config.CgroupPath("memory", id) + "/" + LXC_MEM_USAGE_FILE
	f, err := os.Open(path)
	if err != nil {
		log.Println("Error while opening:", err)
		return 0, err
	}
	defer f.Close()

	buffer := make([]byte, 16)
	n, err := f.Read(buffer)
	if err != nil {
		log.Println("Error while reading ", path, ":", err)
		return 0, err
	}

	buffer = buffer[:n-1]
	val, err := strconv.ParseInt(string(buffer), 10, 64)
	if err != nil {
		log.Println("Error while parsing ", string(buffer), " : ", err)
		return 0, err
	}

	return val, nil
}
コード例 #4
0
ファイル: pid.go プロジェクト: youhong316/acadock-monitoring
func Pid(id string) (string, error) {
	path := config.CgroupPath("memory", id)
	content, err := ioutil.ReadFile(path + "/tasks")
	if err != nil {
		return "", err
	}
	debug.Printf("Content of tasks file for %v: %v", id, string(content))
	return strings.Split(string(content), "\n")[0], nil
}
コード例 #5
0
ファイル: cpu.go プロジェクト: whollacsek/acadock-monitoring
func cpuacctUsage(container string) (int64, error) {
	file := config.CgroupPath("cpuacct", container) + "/" + LXC_CPUACCT_USAGE_FILE
	f, err := os.Open(file)
	if err != nil {
		log.Println(err)
		return 0, err
	}

	buffer := make([]byte, 16)
	n, err := f.Read(buffer)
	buffer = buffer[:n]

	bufferStr := string(buffer)
	bufferStr = bufferStr[:len(bufferStr)-1]

	res, err := strconv.ParseInt(bufferStr, 10, 64)
	if err != nil {
		log.Println("Failed to parse : ", err)
		return 0, err
	}
	return res, nil
}