Native Rust crate for operating on cgroups.
Currently this crate supports only cgroup v1 hierarchy, implemented in v1
module.
memory.kmem.slabinfo
fileThis crate is tested on
on Travis-CI.
```rust use std::path::PathBuf; use controlgroup::{Pid, v1::{cpu, Cgroup, CgroupPath, SubsystemKind, Resources}};
// Define and create a new cgroup controlled by the CPU subsystem. let mut cgroup = cpu::Subsystem::new( CgroupPath::new(SubsystemKind::Cpu, PathBuf::from("students/charlie"))); cgroup.create()?;
// Attach the self process to the cgroup. let pid = Pid::from(std::process::id()); cgroup.add_task(pid)?;
// Define resource limits and constraints for this cgroup. // Here we just use the default for an example. let resources = Resources::default();
// Apply the resource limits. cgroup.apply(&resources)?;
// Low-level file operations are also supported. let statfile = cgroup.openfile_read("cpu.stat")?;
// Do something ...
// Now, remove self process from the cgroup. cgroup.remove_task(pid)?;
// ... and delete the cgroup. cgroup.delete()?;
// Note that subsystem handlers does not implement Drop
and therefore when the
// handler is dropped, the cgroup will stay around.
```
v1::Builder
provides a way to configure cgroups in the builder pattern.
```rust use std::path::PathBuf; use controlgroup::{Max, v1::{devices, hugetlb, net_cls, rdma, Builder, SubsystemKind}};
let mut cgroups =
// Start building a (set of) cgroup(s).
Builder::new(PathBuf::from("students/charlie"))
// Start configuring the CPU resource limits.
.cpu()
.shares(1000)
.cfsquotaus(500 * 1000)
.cfsperiodus(1000 * 1000)
// Finish configuring the CPU resource limits.
.done()
// Start configuring the cpuset resource limits.
.cpuset()
.cpus([0].iter().copied().collect())
.mems([0].iter().copied().collect())
.memorymigrate(true)
.done()
.memory()
.limitinbytes(4 * (1 << 30))
.softlimitinbytes(3 * (1 << 30))
.usehierarchy(true)
.done()
.hugetlb()
.limit2mb(hugetlb::Limit::Pages(4))
.limit1gb(hugetlb::Limit::Pages(2))
.done()
.devices()
.deny(vec!["a *:* rwm".parse::perf
tool.
// Like cpuacct()
method, this method does not return a subsystem builder.
.perfevent()
// Skip creating directories for Cpuacct subsystem and netcls subsystem.
// This is useful when some subsystems share hierarchy with others.
.skip_create(vec![SubsystemKind::Cpuacct, SubsystemKind::NetCls])
// Actually build cgroups with the configuration.
.build()?;
let pid = std::process::id().into(); cgroups.add_task(pid)?;
// Do something ...
cgroups.remove_task(pid)?; cgroups.delete()?; ```
rustc 1.37.0 (eae3437df 2019-08-13)
If you want to use this crate with older Rust, please leave a comment on [issue #1].
This project was started as a fork of [levex/cgroups-rs], and developed by redesigning and reimplementing the whole project.
[levex/cgroups-rs] was licensed under MIT OR Apache-2.0.
See LICENSE for detail.
Copyright 2019 Hidehito Yabuuchi \ Licensed under the MIT license Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.