golang bindings for libcgroup
Go to file
Vincent Batts 48144689b4 more progress 2013-12-17 16:51:06 -05:00
README.md add readme 2013-12-17 15:54:53 -05:00
cg.go more progress 2013-12-17 16:51:06 -05:00

README.md

go-cgroup

Bindings to the libcgroup library

Installing

go get github.com/vbatts/go-cgroup

Sample

cgroup.Init()

fmt.Println(cgroup.GetSubSysMountPoint("cpu"))

ctls, err := cgroup.GetAllControllers()
if err != nil {
	fmt.Println(err)
	return
}
for i := range ctls {
	fmt.Println(ctls[i])
}

Contributing

Fork and Pull Request please!