[][src]Struct isilon::models::SummaryDriveDriveItem

pub struct SummaryDriveDriveItem {
    pub access_latency: f32,
    pub access_slow: f32,
    pub busy: f32,
    pub bytes_in: f32,
    pub bytes_out: f32,
    pub drive_id: String,
    pub iosched_latency: f32,
    pub iosched_queue: f32,
    pub time: i32,
    pub _type: String,
    pub used_bytes_percent: f32,
    pub used_inodes: f32,
    pub xfer_size_in: f32,
    pub xfer_size_out: f32,
    pub xfers_in: f32,
    pub xfers_out: f32,
}

Fields

access_latency: f32

The average operation latency.

access_slow: f32

The rate of slow (long-latency) operations.

busy: f32

The percentage of time the drive was busy.

bytes_in: f32

The rate of bytes written.

bytes_out: f32

The rate of bytes read.

drive_id: String

Drive ID LNN:bay.

iosched_latency: f32

The average time spent in the I/O scheduler.

iosched_queue: f32

The average length of the I/O scheduler queue.

time: i32

Unix Epoch time in seconds of the request.

_type: String

The type of the drive.

used_bytes_percent: f32

The percent of blocks used on the drive.

used_inodes: f32

The number of inodes allocated on the drive.

xfer_size_in: f32

The average size of write operations.

xfer_size_out: f32

The average size of read operations.

xfers_in: f32

The rate of write operations.

xfers_out: f32

The rate of read operations.

Trait Implementations

impl Debug for SummaryDriveDriveItem[src]

impl Serialize for SummaryDriveDriveItem[src]

impl<'de> Deserialize<'de> for SummaryDriveDriveItem[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