pub struct EndpointSnapshot {
pub total_requests: u64,
pub total_errors: u64,
pub latency_p50_ms: Option<u64>,
pub latency_p99_ms: Option<u64>,
}Expand description
Aggregate metrics for a single endpoint within a route.
Fields§
§total_requests: u64§total_errors: u64§latency_p50_ms: Option<u64>§latency_p99_ms: Option<u64>Trait Implementations§
Source§impl Debug for EndpointSnapshot
impl Debug for EndpointSnapshot
Auto Trait Implementations§
impl Freeze for EndpointSnapshot
impl RefUnwindSafe for EndpointSnapshot
impl Send for EndpointSnapshot
impl Sync for EndpointSnapshot
impl Unpin for EndpointSnapshot
impl UnsafeUnpin for EndpointSnapshot
impl UnwindSafe for EndpointSnapshot
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more