mirror of
https://github.com/vbatts/go-cgroup.git
synced 2024-10-31 22:26:48 +00:00
37 lines
510 B
Markdown
37 lines
510 B
Markdown
go-cgroup
|
|
=========
|
|
|
|
Bindings to the libcgroup library
|
|
|
|
|
|
Installing
|
|
==========
|
|
|
|
go get github.com/vbatts/go-cgroup
|
|
|
|
|
|
on debian, you'll need packages: golang, libcgroup-dev
|
|
on fedora, you'll need packages: golang, libcgroup-devel
|
|
|
|
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!
|
|
|