Struct opentelemetry::sdk::metrics::PullController[][src]

pub struct PullController { /* fields omitted */ }
This is supported on crate feature metrics only.

Pull controllers are typically used in an environment where there are multiple readers. It is common, therefore, when configuring a BasicProcessor for use with this controller, to use a ExportKind::Cumulative strategy and the with_memory(true) builder option, which ensures that every CheckpointSet includes full state.

Implementations

impl PullController[src]

pub fn provider(&self) -> RegistryMeterProvider[src]

The provider for this controller

pub fn collect(&mut self) -> Result<()>[src]

Collects all metrics if the last collected at time is past the current period

Trait Implementations

impl CheckpointSet for PullController[src]

impl Debug for PullController[src]

Auto Trait Implementations

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