[][src]Struct isilon::models::SummarySystemSystemItem

pub struct SummarySystemSystemItem {
    pub cpu: f32,
    pub disk_in: f32,
    pub disk_out: f32,
    pub ftp: f32,
    pub hdfs: f32,
    pub http: f32,
    pub net_in: f32,
    pub net_out: f32,
    pub nfs: f32,
    pub node: String,
    pub smb: f32,
    pub time: i32,
    pub total: f32,
}

Fields

cpu: f32

The percentage CPU utilization.

disk_in: f32

Traffic to disk (in bytes/sec).

disk_out: f32

Traffic from disk (in bytes/sec).

ftp: f32

The total throughput (in bytes/sec) for FTP operations.

hdfs: f32

The total throughput (in bytes/second) for HDFS operations.

http: f32

The total throughput (in bytes/sec) for HTTP operations.

net_in: f32

Incoming network traffic (in bytes/sec) for all operations.

net_out: f32

Outgoing network traffic (in bytes/sec) for all operations.

nfs: f32

The total throughput (in bytes/sec) for NFS (NFS3 & NFS4) operations.

node: String

Node ID/LNN, 'All' for cluster.

smb: f32

The total throughput (in bytes/sec) for SMB (SMB1 & SMB2) operations.

time: i32

Unix Epoch time in seconds of the request.

total: f32

The total throughput (in bytes/sec) for all protocols listed.

Trait Implementations

impl Debug for SummarySystemSystemItem[src]

impl Serialize for SummarySystemSystemItem[src]

impl<'de> Deserialize<'de> for SummarySystemSystemItem[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T