[][src]Struct nakadion::consumer::Metrix

pub struct Metrix { /* fields omitted */ }

Instrumentation with Metrix

Methods

impl Metrix[src]

pub fn new<A: AggregatesProcessors>(
    config: &MetrixConfig,
    processor: &mut A
) -> Self
[src]

Initializes the metrics.

Adds them directly into the given processor without creating an additional group.

pub fn new_mountable(
    config: &MetrixConfig,
    name: Option<&str>
) -> (Metrix, ProcessorMount)
[src]

Creates new Metrix instrumentation and returns a mount that can be plugged with metrix and the instrumentation which can be plugged into the Consumer

Trait Implementations

impl Clone for Metrix[src]

impl Instruments for Metrix[src]

Auto Trait Implementations

impl RefUnwindSafe for Metrix

impl Send for Metrix

impl Sync for Metrix

impl Unpin for Metrix

impl UnwindSafe for Metrix

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, U> Into<U> for T where
    U: From<T>, 
[src]

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

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>,