[][src]Struct hotmic_stdout::StdoutExporter

pub struct StdoutExporter { /* fields omitted */ }

Exports metrics by logging them in a textual format.

Methods

impl StdoutExporter[src]

pub fn new(controller: Controller, level: Level, interval: Duration) -> Self[src]

Creates a new StdoutExporter.

The exporter will take a snapshot based on the configured controller, outputting at the configured level, at the configured interval.

pub fn run(&mut self)[src]

Runs the exporter synchronously, blocking the calling thread.

You should run this in a dedicated thread:

let mut exporter = StdoutExporter::new(controller, Level::Info, Duration::from_secs(5));
std::thread::spawn(move || exporter.run());

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T