Native Rust library for managing Linux Control Groups (cgroups).
This crate, curently, only supports the original, V1 hierarchy. You are welcome to contribute Cgroups V2 support.
First, add the following to your Cargo.toml
:
toml
[dependencies]
cgroups-fs = "1.0"
Next, use it in your crate:
rust
use cgroups_fs;
```rust use cgroups_fs;
let mycgroup = cgroupsfs::CgroupName("my-cgroup");
let mycpucgroup = cgroupsfs::Cgroup::init(&mycgroup, "cpu")?;
println!(
"The current CPU shares in my-cgroup
control group is {}",
mycpucgroup.get_value::
Please, find more examples in the documentation.
This project is licensed under either of
at your option.