1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/vendor/github.com/containerd/cgroups
Sebastiaan van Stijn 7392abda03
update containerd/cgroups 4994991857f9b0ae8dc439551e8bebdbb4bf66c1
full diff: dbea6f2bd4...4994991857

brings in https://github.com/containerd/cgroups/pull/79 Return ErrCgroupDeleted when no subsystems
relates to https://github.com/containerd/containerd/issues/3133 Custom cgroup path does not work in containerd 1.2.5

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-03-29 00:00:06 +01:00
..
blkio.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
cgroup.go update containerd/cgroups 4994991857f9b0ae8dc439551e8bebdbb4bf66c1 2019-03-29 00:00:06 +01:00
control.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
cpu.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
cpuacct.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
cpuset.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
devices.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
errors.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
freezer.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
hierarchy.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
hugetlb.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
LICENSE Vendor containerd 1.0 2017-10-19 13:19:41 -07:00
memory.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
metrics.pb.go Update containerd vendor to 1.2 beta 2018-08-17 13:08:22 -07:00
metrics.proto Update containerd vendor to 1.2 beta 2018-08-17 13:08:22 -07:00
named.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
net_cls.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
net_prio.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
opts.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
paths.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
perf_event.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
pids.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
rdma.go Update containerd vendor to 1.2 beta 2018-08-17 13:08:22 -07:00
README.md vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
state.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
subsystem.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
systemd.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
ticks.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07:00
utils.go vendor containerd/cgroups dbea6f2bd41658b84b00417ceefa416b979cbf10 2019-03-13 21:39:49 +01:00
v1.go containerd: update to 1.0.3 release 2018-04-02 13:42:49 -07: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.