[][src]Struct isilon::models::SummaryClientClientItem

pub struct SummaryClientClientItem {
    pub class: String,
    pub _in: f32,
    pub in_avg: f32,
    pub in_max: f32,
    pub in_min: f32,
    pub local_addr: String,
    pub local_name: String,
    pub node: Option<i32>,
    pub num_operations: i32,
    pub operation_rate: f32,
    pub out: f32,
    pub out_avg: f32,
    pub out_max: f32,
    pub out_min: f32,
    pub protocol: String,
    pub remote_addr: String,
    pub remote_name: String,
    pub time: i32,
    pub time_avg: f32,
    pub time_max: f32,
    pub time_min: f32,
    pub user: Option<AuthAccessAccessItemFileGroup>,
}

Fields

class: String

The class of the operation.

_in: f32

Rate of input (in bytes/second) for an operation since the last time isi statistics collected the data.

in_avg: f32

Average input (received) bytes for an operation, in bytes.

in_max: f32

Maximum input (received) bytes for an operation, in bytes.

in_min: f32

Minimum input (received) bytes for an operation, in bytes.

local_addr: String

The IP address (in dotted-quad form) of the host receiving the operation request.

local_name: String

The resolved text name of the LocalAddr, if resolution can be performed.

node: Option<i32>

The node on which the operation was performed.

num_operations: i32

The number of times an operation has been performed.

operation_rate: f32

The rate (in ops/second) at which an operation has been performed.

out: f32

Rate of output (in bytes/second) for an operation since the last time isi statistics collected the data.

out_avg: f32

Average output (sent) bytes for an operation, in bytes.

out_max: f32

Maximum output (sent) bytes for an operation, in bytes.

out_min: f32

Minimum output (sent) bytes for an operation, in bytes.

protocol: String

The protocol of the operation.

remote_addr: String

The IP address (in dotted-quad form) of the host sending the operation request.

remote_name: String

The resolved text name of the RemoteAddr, if resolution can be performed.

time: i32

Unix Epoch time in seconds of the request.

time_avg: f32

The average elapsed time (in microseconds) taken to complete an operation.

time_max: f32

The maximum elapsed time (in microseconds) taken to complete an operation.

time_min: f32

The minimum elapsed time (in microseconds) taken to complete an operation.

user: Option<AuthAccessAccessItemFileGroup>

Specifies properties for a persona, which consists of either a 'type' and a 'name' or an 'ID'.

Trait Implementations

impl Debug for SummaryClientClientItem[src]

impl Serialize for SummaryClientClientItem[src]

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