pub struct SentryDrain<D: Drain> { /* private fields */ }
Expand description

A Drain which passes all Records to Sentry.

Implementations§

source§

impl<D: Drain> SentryDrain<D>

source

pub fn new(drain: D) -> Self

Creates a new SentryDrain, wrapping a slog::Drain.

source

pub fn filter<F>(self, filter: F) -> Selfwhere F: Fn(Level) -> LevelFilter + Send + Sync + 'static,

Sets a custom filter function.

The filter classifies how sentry should handle Records based on their slog::Level.

source

pub fn mapper<M>(self, mapper: M) -> Selfwhere M: Fn(&Record<'_>, &OwnedKVList) -> RecordMapping + Send + Sync + 'static,

Sets a custom mapper function.

The mapper is responsible for creating either breadcrumbs or events from Records.

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§

source§

impl<D: Drain> Drain for SentryDrain<D>

§

type Ok = <D as Drain>::Ok

Type returned by this drain Read more
§

type Err = <D as Drain>::Err

Type of potential errors that can be returned by this Drain
source§

fn log( &self, record: &Record<'_>, values: &OwnedKVList ) -> Result<Self::Ok, Self::Err>

Handle one logging statement (Record) Read more
source§

fn is_enabled(&self, level: Level) -> bool

Avoid: Check if messages at the specified log level are maybe enabled for this logger. Read more
source§

fn is_critical_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn is_error_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn is_warning_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn is_info_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn is_debug_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn is_trace_enabled(&self) -> bool

Avoid: See is_enabled
source§

fn map<F, R>(self, f: F) -> Rwhere Self: Sized, F: FnOnce(Self) -> R,

Pass Drain through a closure, eg. to wrap into another Drain. Read more
source§

fn filter<F>(self, f: F) -> Filter<Self, F>where Self: Sized, F: FilterFn,

Filter logging records passed to Drain Read more
source§

fn filter_level(self, level: Level) -> LevelFilter<Self>where Self: Sized,

Filter logging records passed to Drain (by level) Read more
source§

fn map_err<F, E>(self, f: F) -> MapError<Self, E>where Self: Sized, F: MapErrFn<Self::Err, E>,

Map logging errors returned by this drain Read more
source§

fn ignore_res(self) -> IgnoreResult<Self>where Self: Sized,

Ignore results returned by this drain Read more
source§

impl<D: SendSyncRefUnwindSafeDrain> RefUnwindSafe for SentryDrain<D>

source§

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§

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.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> SendRefUnwindSafeDrain for Twhere T: Drain + Send + RefUnwindSafe + ?Sized,

source§

impl<T> SendSyncRefUnwindSafeDrain for Twhere T: Drain + Send + Sync + RefUnwindSafe + ?Sized,

source§

impl<T> SendSyncUnwindSafe for Twhere T: Send + Sync + UnwindSafe + ?Sized,

source§

impl<T> SendSyncUnwindSafeDrain for Twhere T: Drain + Send + Sync + UnwindSafe + ?Sized,