Struct sentry_slog::SentryDrain
source · [−]pub struct SentryDrain<D: Drain> { /* private fields */ }
Expand description
A Drain which passes all Record
s to Sentry.
Implementations
sourceimpl<D: Drain> SentryDrain<D>
impl<D: Drain> SentryDrain<D>
sourcepub fn filter<F>(self, filter: F) -> Self where
F: Fn(Level) -> LevelFilter + Send + Sync + 'static,
pub fn filter<F>(self, filter: F) -> Self where
F: Fn(Level) -> LevelFilter + Send + Sync + 'static,
Sets a custom filter function.
The filter classifies how sentry should handle Record
s based on
their slog::Level
.
sourcepub fn mapper<M>(self, mapper: M) -> Self where
M: Fn(&Record<'_>, &OwnedKVList) -> RecordMapping + Send + Sync + 'static,
pub fn mapper<M>(self, mapper: M) -> Self where
M: Fn(&Record<'_>, &OwnedKVList) -> RecordMapping + Send + Sync + 'static,
Sets a custom mapper function.
The mapper is responsible for creating either breadcrumbs or events
from Record
s.
Examples
use sentry_slog::{breadcrumb_from_record, RecordMapping, SentryDrain};
let drain = SentryDrain::new(slog::Discard).mapper(|record, kv| match record.level() {
slog::Level::Trace => RecordMapping::Ignore,
_ => RecordMapping::Breadcrumb(breadcrumb_from_record(record, kv)),
});
Trait Implementations
sourceimpl<D: Drain> Drain for SentryDrain<D>
impl<D: Drain> Drain for SentryDrain<D>
sourcefn log(
&self,
record: &Record<'_>,
values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
fn log(
&self,
record: &Record<'_>,
values: &OwnedKVList
) -> Result<Self::Ok, Self::Err>
Handle one logging statement (Record
) Read more
sourcefn is_enabled(&self, level: Level) -> bool
fn is_enabled(&self, level: Level) -> bool
Avoid: Check if messages at the specified log level are maybe enabled for this logger. Read more
sourcefn is_critical_enabled(&self) -> bool
fn is_critical_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn is_error_enabled(&self) -> bool
fn is_error_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn is_warning_enabled(&self) -> bool
fn is_warning_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn is_info_enabled(&self) -> bool
fn is_info_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn is_debug_enabled(&self) -> bool
fn is_debug_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn is_trace_enabled(&self) -> bool
fn is_trace_enabled(&self) -> bool
Avoid: See is_enabled
sourcefn map<F, R>(self, f: F) -> R where
F: FnOnce(Self) -> R,
fn map<F, R>(self, f: F) -> R where
F: FnOnce(Self) -> R,
Pass Drain
through a closure, eg. to wrap
into another Drain
. Read more
sourcefn filter<F>(self, f: F) -> Filter<Self, F> where
F: FilterFn,
fn filter<F>(self, f: F) -> Filter<Self, F> where
F: FilterFn,
Filter logging records passed to Drain
Read more
sourcefn filter_level(self, level: Level) -> LevelFilter<Self>
fn filter_level(self, level: Level) -> LevelFilter<Self>
Filter logging records passed to Drain
(by level) Read more
sourcefn map_err<F, E>(self, f: F) -> MapError<Self, E> where
F: MapErrFn<Self::Err, E>,
fn map_err<F, E>(self, f: F) -> MapError<Self, E> where
F: MapErrFn<Self::Err, E>,
Map logging errors returned by this drain Read more
sourcefn ignore_res(self) -> IgnoreResult<Self>
fn ignore_res(self) -> IgnoreResult<Self>
Ignore results returned by this drain Read more
impl<D: SendSyncRefUnwindSafeDrain> RefUnwindSafe for SentryDrain<D>
impl<D: SendSyncUnwindSafeDrain> UnwindSafe for SentryDrain<D>
Auto Trait Implementations
impl<D> Send for SentryDrain<D> where
D: Send,
impl<D> Sync for SentryDrain<D> where
D: Sync,
impl<D> Unpin for SentryDrain<D> where
D: Unpin,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more