1
0
Fork 0
mirror of https://github.com/vbatts/go-cgroup.git synced 2024-11-23 09:05:39 +00:00
go-cgroup/README.md
Vincent Batts d3db5c0037
README: format and notice
Fixes #3

Add a notice that these bindings are incomplete

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2017-05-17 10:12:39 -04:00

641 B

go-cgroup

Bindings to the libcgroup library

Notice

these bindings are incomplete

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

package main

import "github.com/vbatts/go-cgroup"
import "fmt"

func main() {
  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!