Struct aws_sdk_elasticbeanstalk::model::ApplicationMetrics
source · [−]#[non_exhaustive]pub struct ApplicationMetrics {
pub duration: Option<i32>,
pub request_count: i32,
pub status_codes: Option<StatusCodes>,
pub latency: Option<Latency>,
}
Expand description
Application request metrics for an AWS Elastic Beanstalk environment.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.duration: Option<i32>
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
).
request_count: i32
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.
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.
Implementations
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
).
Average number of requests handled by the web server per second over the last 10 seconds.
Represents the percentage of requests over the last 10 seconds that resulted in each type of status code response.
Creates a new builder-style object to manufacture ApplicationMetrics
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ApplicationMetrics
impl Send for ApplicationMetrics
impl Sync for ApplicationMetrics
impl Unpin for ApplicationMetrics
impl UnwindSafe for ApplicationMetrics
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more