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 27552ceb15
bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a
full diff: c4b9ac5c76...5fbad35c2a

- containerd/cgroups#82 Add go module support
- containerd/cgroups#96 Move metrics proto package to stats/v1
- containerd/cgroups#97 Allow overriding the default /proc folder in blkioController
- containerd/cgroups#98 Allows ignoring memory modules
- containerd/cgroups#99 Add Go 1.13 to Travis
- containerd/cgroups#100 stats/v1: export per-cgroup stats

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-10-31 01:09:12 +01:00
..
stats/v1 bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
blkio.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
cgroup.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
control.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
cpu.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
cpuacct.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
cpuset.go
devices.go
errors.go
freezer.go
go.mod bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
hierarchy.go
hugetlb.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
LICENSE
memory.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
named.go
net_cls.go
net_prio.go
opts.go
paths.go
perf_event.go
pids.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
rdma.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
README.md
state.go
subsystem.go bump containerd/cgroups 5fbad35c2a7e855762d3c60f2e474ffcad0d470a 2019-10-31 01:09:12 +01:00
systemd.go
ticks.go
utils.go
v1.go

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.