pub struct ApplicationMetrics {
pub duration: Option<i64>,
pub latency: Option<Latency>,
pub request_count: Option<i64>,
pub status_codes: Option<StatusCodes>,
}
Expand description
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§
Source§impl Clone for ApplicationMetrics
impl Clone for ApplicationMetrics
Source§fn clone(&self) -> ApplicationMetrics
fn clone(&self) -> ApplicationMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ApplicationMetrics
impl Debug for ApplicationMetrics
Source§impl Default for ApplicationMetrics
impl Default for ApplicationMetrics
Source§fn default() -> ApplicationMetrics
fn default() -> ApplicationMetrics
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationMetrics
impl PartialEq for ApplicationMetrics
impl StructuralPartialEq for ApplicationMetrics
Auto Trait Implementations§
impl Freeze for ApplicationMetrics
impl RefUnwindSafe for ApplicationMetrics
impl Send for ApplicationMetrics
impl Sync for ApplicationMetrics
impl Unpin for ApplicationMetrics
impl UnwindSafe for ApplicationMetrics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more