pub struct WorkerGuard { /* private fields */ }
Expand description

A guard that flushes spans/events associated to a NonBlocking on a drop

Writing to a NonBlocking writer will not immediately write a span or event to the underlying output. Instead, the span or event will be written by a dedicated logging thread at some later point. To increase throughput, the non-blocking writer will flush to the underlying output on a periodic basis rather than every time a span or event is written. This means that if the program terminates abruptly (such as through an uncaught panic or a std::process::exit), some spans or events may not be written.

Since spans/events and events recorded near a crash are often necessary for diagnosing the failure, WorkerGuard provides a mechanism to ensure that all buffered logs are flushed to their output. WorkerGuard should be assigned in the main function or whatever the entrypoint of the program is. This will ensure that the guard will be dropped during an unwinding or when main exits successfully.

Examples

fn main () {
    let (non_blocking, _guard) = tracing_appender::non_blocking(std::io::stdout());
    let subscriber = tracing_subscriber::fmt().with_writer(non_blocking);
    tracing::subscriber::with_default(subscriber.finish(), || {
        // Emit some tracing events within context of the non_blocking `_guard` and tracing subscriber
        tracing::event!(tracing::Level::INFO, "Hello");
    });
    // Exiting the context of `main` will drop the `_guard` and any remaining logs should get flushed
}

Trait Implementations§

source§

impl Debug for WorkerGuard

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for WorkerGuard

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

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

Performs the conversion.