cgroups-fs crates.io Documentation Build Status

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.

Prior art

Usage

First, add the following to your Cargo.toml:

toml [dependencies] cgroups-fs = "1.0"

Next, use it in your crate:

rust use cgroups_fs;

Examples

```rust use cgroups_fs;

let mycgroup = cgroupsfs::CgroupName("my-cgroup"); let mycpucgroup = cgroupsfs::AutomanagedCgroup::init(&mycgroup, "cpu")?; println!( "The current CPU shares is {}", mycpucgroup.get_value::("cpu.shares") ); ```

Please, find more examples in the documentation.

License

This project is licensed under either of

at your option.