containerd/vendor/github.com/containerd/cgroups
Michael Crosby 8ff5827e98 Update cri and cgroup packages
This change includes a cri master bump and a cgroup bump for windows support
with cgroup stats and reusing the cgroup metric types.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2019-10-01 10:19:56 -04:00
..
stats/v1 Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
blkio.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
cgroup.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
control.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
cpu.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
cpuacct.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
cpuset.go Update cgroups to 1152b960fcee041f50df15cdc67c29db 2018-12-10 11:58:45 -05:00
devices.go Update cgroups to 1152b960fcee041f50df15cdc67c29db 2018-12-10 11:58:45 -05:00
errors.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
freezer.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
go.mod Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
hierarchy.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
hugetlb.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
LICENSE Update runc and runtime-spec dependencies 2017-06-27 11:44:38 -07:00
memory.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
named.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
net_cls.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
net_prio.go Update cgroups to 1152b960fcee041f50df15cdc67c29db 2018-12-10 11:58:45 -05:00
opts.go Bump cgroups to dbea6f2bd41658b84b00417ceefa416b97 2019-02-26 15:48:10 -05:00
paths.go Bump cgroups to dbea6f2bd41658b84b00417ceefa416b97 2019-02-26 15:48:10 -05:00
perf_event.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
pids.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
rdma.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
README.md Update cgroups to 1152b960fcee041f50df15cdc67c29db 2018-12-10 11:58:45 -05:00
state.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
subsystem.go Update cri and cgroup packages 2019-10-01 10:19:56 -04:00
systemd.go Update cgroups to 1152b960fcee041f50df15cdc67c29db 2018-12-10 11:58:45 -05:00
ticks.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00
utils.go Update dependency containerd/cgroups 2019-06-19 21:19:00 +02:00
v1.go Update cgroups vendor for license headers/bug fix 2018-03-09 15:54:13 -05:00

cgroups

Build Status codecov GoDoc Go Report Card

Go package for creating, managing, inspecting, and destroying cgroups. The resources format for settings on the cgroup uses the OCI runtime-spec found here.

Examples

Create a new cgroup

This creates a new cgroup using a static path for all subsystems under /test.

  • /sys/fs/cgroup/cpu/test
  • /sys/fs/cgroup/memory/test
  • etc....

It uses a single hierarchy and specifies cpu shares as a resource constraint and uses the v1 implementation of cgroups.

shares := uint64(100)
control, err := cgroups.New(cgroups.V1, cgroups.StaticPath("/test"), &specs.LinuxResources{
    CPU: &specs.CPU{
        Shares: &shares,
    },
})
defer control.Delete()

Create with systemd slice support

control, err := cgroups.New(cgroups.Systemd, cgroups.Slice("system.slice", "runc-test"), &specs.LinuxResources{
    CPU: &specs.CPU{
        Shares: &shares,
    },
})

Load an existing cgroup

control, err = cgroups.Load(cgroups.V1, cgroups.StaticPath("/test"))

Add a process to the cgroup

if err := control.Add(cgroups.Process{Pid:1234}); err != nil {
}

Update the cgroup

To update the resources applied in the cgroup

shares = uint64(200)
if err := control.Update(&specs.LinuxResources{
    CPU: &specs.CPU{
        Shares: &shares,
    },
}); err != nil {
}

Freeze and Thaw the cgroup

if err := control.Freeze(); err != nil {
}
if err := control.Thaw(); err != nil {
}

List all processes in the cgroup or recursively

processes, err := control.Processes(cgroups.Devices, recursive)

Get Stats on the cgroup

stats, err := control.Stat()

By adding cgroups.IgnoreNotExist all non-existent files will be ignored, e.g. swap memory stats without swap enabled

stats, err := control.Stat(cgroups.IgnoreNotExist)

Move process across cgroups

This allows you to take processes from one cgroup and move them to another.

err := control.MoveTo(destination)

Create subcgroup

subCgroup, err := control.New("child", resources)

Project details

Cgroups is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.