containerd/vendor/github.com/containerd/cgroups
Sebastiaan van Stijn 20ee06b0b3
vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6
full diff: 7347743e5d...b444813739

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-05-09 15:07:01 +02:00
..
stats/v1 add local support for introspection service 2020-01-03 11:42:21 -08:00
v2 vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
blkio.go vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
cgroup.go add local support for introspection service 2020-01-03 11:42:21 -08:00
control.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
cpu.go vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
cpuacct.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
cpuset.go Update containerd to 5ba368748b. 2019-02-05 11:56:24 -08:00
devices.go Update containerd to 5ba368748b. 2019-02-05 11:56:24 -08:00
errors.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
freezer.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
go.mod vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
hierarchy.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
hugetlb.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
LICENSE Adding option to configure cgroup to start cri-containerd 2017-08-30 14:37:40 -07:00
memory.go vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
named.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
net_cls.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
net_prio.go Update containerd to 5ba368748b. 2019-02-05 11:56:24 -08:00
opts.go Update containerd 591e52c504. 2019-04-05 11:39:34 -07:00
paths.go Update containerd 591e52c504. 2019-04-05 11:39:34 -07:00
perf_event.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
pids.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
rdma.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
README.md add local support for introspection service 2020-01-03 11:42:21 -08:00
state.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
subsystem.go Update containerd to c0c6b51179. 2019-10-09 18:05:20 -07:00
systemd.go vendor updated + added cgroupv2 metrics 2020-01-17 11:55:06 +02:00
ticks.go Update containerd to 3013762fc5 2018-03-13 04:41:11 +00:00
utils.go vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02:00
v1.go vendor: containerd/cgroups b4448137398923af7f4918b8b2ad8249172ca7a6 2020-05-09 15:07:01 +02: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)

Attention

All static path should not include /sys/fs/cgroup/ prefix, it should start with your own cgroups name

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.