pub struct HttpHandlerMetrics { /* private fields */ }Implementations§
Source§impl HttpHandlerMetrics
impl HttpHandlerMetrics
pub fn new() -> Self
pub fn record_reject(&self, transport: HttpTransport, reason: HttpRejectReason)
pub fn record_duration(&self, transport: HttpTransport, seconds: f64)
pub fn rejected_count( &self, transport: HttpTransport, reason: HttpRejectReason, ) -> u64
pub fn duration_sample_count(&self, transport: HttpTransport) -> u64
Sourcepub fn render(&self, body: &mut String, limiter: &HttpConnectionLimiter)
pub fn render(&self, body: &mut String, limiter: &HttpConnectionLimiter)
Render all four series in Prometheus text exposition format,
appending to body. Reads the live current() and cap() off
the supplied limiter; the limiter is the source of truth for
the two gauges so the metrics can’t drift from the admission
path.
Trait Implementations§
Source§impl Clone for HttpHandlerMetrics
impl Clone for HttpHandlerMetrics
Source§fn clone(&self) -> HttpHandlerMetrics
fn clone(&self) -> HttpHandlerMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HttpHandlerMetrics
impl Debug for HttpHandlerMetrics
Auto Trait Implementations§
impl Freeze for HttpHandlerMetrics
impl RefUnwindSafe for HttpHandlerMetrics
impl Send for HttpHandlerMetrics
impl Sync for HttpHandlerMetrics
impl Unpin for HttpHandlerMetrics
impl UnsafeUnpin for HttpHandlerMetrics
impl UnwindSafe for HttpHandlerMetrics
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request