[][src]Struct rusoto_elasticbeanstalk::ApplicationMetrics

pub struct ApplicationMetrics {
    pub duration: Option<i64>,
    pub latency: Option<Latency>,
    pub request_count: Option<i64>,
    pub status_codes: Option<StatusCodes>,
}

Application request metrics for an AWS Elastic Beanstalk environment.

Fields

duration: Option<i64>

The amount of time that the metrics cover (usually 10 seconds). For example, you might have 5 requests (request_count) within the most recent time slice of 10 seconds (duration).

latency: Option<Latency>

Represents the average latency for the slowest X percent of requests over the last 10 seconds. Latencies are in seconds with one millisecond resolution.

request_count: Option<i64>

Average number of requests handled by the web server per second over the last 10 seconds.

status_codes: Option<StatusCodes>

Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.

Trait Implementations

impl Clone for ApplicationMetrics[src]

impl Debug for ApplicationMetrics[src]

impl Default for ApplicationMetrics[src]

impl PartialEq<ApplicationMetrics> for ApplicationMetrics[src]

impl StructuralPartialEq for ApplicationMetrics[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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.