pub struct LinuxIntelRdt {
pub clos_id: Option<String>,
pub enable_cmt: Option<bool>,
pub enable_mbm: Option<bool>,
pub l3_cache_schema: Option<String>,
pub mem_bw_schema: Option<String>,
}
Expand description
LinuxIntelRdt : LinuxIntelRdt has container runtime resource constraints for Intel RDT CAT and MBA features and flags enabling Intel RDT CMT and MBM features. Intel RDT features are available in Linux 4.14 and newer kernel versions.
Fields§
§clos_id: Option<String>
The identity for RDT Class of Service
enable_cmt: Option<bool>
EnableCMT is the flag to indicate if the Intel RDT CMT is enabled. CMT (Cache Monitoring Technology) supports monitoring of the last-level cache (LLC) occupancy for the container.
enable_mbm: Option<bool>
EnableMBM is the flag to indicate if the Intel RDT MBM is enabled. MBM (Memory Bandwidth Monitoring) supports monitoring of total and local memory bandwidth for the container.
l3_cache_schema: Option<String>
The schema for L3 cache id and capacity bitmask (CBM) Format: "L3:<cache_id0>=
mem_bw_schema: Option<String>
The schema of memory bandwidth per L3 cache id Format: "MB:<cache_id0>=bandwidth0;<cache_id1>=bandwidth1;…" The unit of memory bandwidth is specified in "percentages" by default, and in "MBps" if MBA Software Controller is enabled.
Implementations§
Source§impl LinuxIntelRdt
impl LinuxIntelRdt
Sourcepub fn new() -> LinuxIntelRdt
pub fn new() -> LinuxIntelRdt
LinuxIntelRdt has container runtime resource constraints for Intel RDT CAT and MBA features and flags enabling Intel RDT CMT and MBM features. Intel RDT features are available in Linux 4.14 and newer kernel versions.
Trait Implementations§
Source§impl Clone for LinuxIntelRdt
impl Clone for LinuxIntelRdt
Source§fn clone(&self) -> LinuxIntelRdt
fn clone(&self) -> LinuxIntelRdt
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more