Struct warp_prometheus::Metrics[][src]

pub struct Metrics { /* fields omitted */ }

Implementations

impl Metrics[src]

pub fn new(cr: &Registry, include_path_labels: &Vec<String>) -> Self[src]

pub fn http_metrics(&self, info: Info<'_>)[src]

Get prometheus metrics per-route and how long each route takes.

use prometheus::Registry;
use warp::Filter;
use warp_prometheus::Metrics;


let registry: &Registry = prometheus::default_registry();
let path_includes: Vec<String> = vec![String::from("hello")];

let route_one = warp::path("hello")
   .and(warp::path::param())
   .and(warp::header("user-agent"))
   .map(|param: String, agent: String| {
       format!("Hello {}, whose agent is {}", param, agent)
   });
let metrics = Metrics::new(&registry, &path_includes);

let test_routes = route_one.with(warp::log::custom(move |log| {
           metrics.http_metrics(log)
       }));

Trait Implementations

impl Clone for Metrics[src]

impl Debug for Metrics[src]

Auto Trait Implementations

impl !RefUnwindSafe for Metrics

impl Send for Metrics

impl Sync for Metrics

impl Unpin for Metrics

impl !UnwindSafe for Metrics

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,