Struct WorkerGuard
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§
§impl Debug for WorkerGuard
impl Debug for WorkerGuard
Auto Trait Implementations§
impl Freeze for WorkerGuard
impl !RefUnwindSafe for WorkerGuard
impl Send for WorkerGuard
impl Sync for WorkerGuard
impl Unpin for WorkerGuard
impl !UnwindSafe for WorkerGuard
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a rama_grpc::Request§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Policy that returns Action::Follow only if self and other return
Action::Follow. Read more