[][src]Struct fibers_http_server::metrics::HandlerMetrics

pub struct HandlerMetrics { /* fields omitted */ }

HTTP handler metrics.

Methods

impl HandlerMetrics[src]

pub fn requests(&self, status_code: u16) -> Option<u64>[src]

Number of requests that the handler handled.

Metric: fibers_http_server_handler_requests_total { status = "..." } <COUNTER>

pub fn request_duration_seconds_buckets(&self) -> &[Bucket][src]

Histogram bucket of requests processing duration.

It does not contains the time elapsed for reading/writing requests/responses.

Metric: fibers_http_server_handler_request_duration_seconds_bucket { le="...", method="...", path="..." } <COUNTER>

Trait Implementations

impl Clone for HandlerMetrics[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for HandlerMetrics[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]