Struct metrics_tracing_context::MetricsLayer[][src]

pub struct MetricsLayer<S> { /* fields omitted */ }
Expand description

MetricsLayer is a tracing_subscriber::Layer that captures the span fields and allows them to be later on used as metrics labels.

Implementations

impl<S> MetricsLayer<S> where
    S: Subscriber + for<'span> LookupSpan<'span>, 
[src]

pub fn new() -> Self[src]

Create a new MetricsLayer.

Trait Implementations

impl<S> Default for MetricsLayer<S> where
    S: Subscriber + for<'span> LookupSpan<'span>, 
[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl<S> Layer<S> for MetricsLayer<S> where
    S: Subscriber + for<'a> LookupSpan<'a>, 
[src]

fn new_span(&self, attrs: &Attributes<'_>, id: &Id, cx: Context<'_, S>)[src]

Notifies this layer that a new span was constructed with the given Attributes and Id. Read more

unsafe fn downcast_raw(&self, id: TypeId) -> Option<*const ()>[src]

fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest[src]

Registers a new callsite with this layer, returning whether or not the layer is interested in being notified about the callsite, similarly to Subscriber::register_callsite. Read more

fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool[src]

Returns true if this layer is interested in a span or event with the given metadata in the current Context, similarly to Subscriber::enabled. Read more

fn on_record(&self, _span: &Id, _values: &Record<'_>, _ctx: Context<'_, S>)[src]

Notifies this layer that a span with the given Id recorded the given values. Read more

fn on_follows_from(&self, _span: &Id, _follows: &Id, _ctx: Context<'_, S>)[src]

Notifies this layer that a span with the ID span recorded that it follows from the span with the ID follows. Read more

fn on_event(&self, _event: &Event<'_>, _ctx: Context<'_, S>)[src]

Notifies this layer that an event has occurred.

fn on_enter(&self, _id: &Id, _ctx: Context<'_, S>)[src]

Notifies this layer that a span with the given ID was entered.

fn on_exit(&self, _id: &Id, _ctx: Context<'_, S>)[src]

Notifies this layer that the span with the given ID was exited.

fn on_close(&self, _id: Id, _ctx: Context<'_, S>)[src]

Notifies this layer that the span with the given ID has been closed.

fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)[src]

Notifies this layer that a span ID has been cloned, and that the subscriber returned a different ID. Read more

fn and_then<L>(self, layer: L) -> Layered<L, Self, S> where
    L: Layer<S>, 
[src]

Composes this layer around the given Layer, returning a Layered struct implementing Layer. Read more

fn with_subscriber(self, inner: S) -> Layered<Self, S, S>[src]

Composes this Layer with the given Subscriber, returning a Layered struct that implements Subscriber. Read more

Auto Trait Implementations

impl<S> RefUnwindSafe for MetricsLayer<S>

impl<S> Send for MetricsLayer<S>

impl<S> Sync for MetricsLayer<S>

impl<S> Unpin for MetricsLayer<S>

impl<S> UnwindSafe for MetricsLayer<S>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

pub unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more

pub unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more

pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.