[][src]Struct cgroups_rs::memory::NumaStat

pub struct NumaStat {
    pub total_pages: u64,
    pub total_pages_per_node: Vec<u64>,
    pub file_pages: u64,
    pub file_pages_per_node: Vec<u64>,
    pub anon_pages: u64,
    pub anon_pages_per_node: Vec<u64>,
    pub unevictable_pages: u64,
    pub unevictable_pages_per_node: Vec<u64>,
    pub hierarchical_total_pages: u64,
    pub hierarchical_total_pages_per_node: Vec<u64>,
    pub hierarchical_file_pages: u64,
    pub hierarchical_file_pages_per_node: Vec<u64>,
    pub hierarchical_anon_pages: u64,
    pub hierarchical_anon_pages_per_node: Vec<u64>,
    pub hierarchical_unevictable_pages: u64,
    pub hierarchical_unevictable_pages_per_node: Vec<u64>,
}

Contains statistics about the NUMA locality of the control group's tasks.

Fields

total_pages: u64

Total amount of pages used by the control group.

total_pages_per_node: Vec<u64>

Total amount of pages used by the control group, broken down by NUMA node.

file_pages: u64

Total amount of file pages used by the control group.

file_pages_per_node: Vec<u64>

Total amount of file pages used by the control group, broken down by NUMA node.

anon_pages: u64

Total amount of anonymous pages used by the control group.

anon_pages_per_node: Vec<u64>

Total amount of anonymous pages used by the control group, broken down by NUMA node.

unevictable_pages: u64

Total amount of unevictable pages used by the control group.

unevictable_pages_per_node: Vec<u64>

Total amount of unevictable pages used by the control group, broken down by NUMA node.

hierarchical_total_pages: u64

Same as total_pages, but includes the descedant control groups' number as well.

hierarchical_total_pages_per_node: Vec<u64>

Same as total_pages_per_node, but includes the descedant control groups' number as well.

hierarchical_file_pages: u64

Same as file_pages, but includes the descedant control groups' number as well.

hierarchical_file_pages_per_node: Vec<u64>

Same as file_pages_per_node, but includes the descedant control groups' number as well.

hierarchical_anon_pages: u64

Same as anon_pages, but includes the descedant control groups' number as well.

hierarchical_anon_pages_per_node: Vec<u64>

Same as anon_pages_per_node, but includes the descedant control groups' number as well.

hierarchical_unevictable_pages: u64

Same as unevictable, but includes the descedant control groups' number as well.

hierarchical_unevictable_pages_per_node: Vec<u64>

Same as unevictable_per_node, but includes the descedant control groups' number as well.

Trait Implementations

impl Debug for NumaStat[src]

impl Default for NumaStat[src]

impl Eq for NumaStat[src]

impl PartialEq<NumaStat> for NumaStat[src]

impl StructuralEq for NumaStat[src]

impl StructuralPartialEq for NumaStat[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.