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

A Drain which passes all Records to Sentry.

Implementations

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

Sets a custom filter function.

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

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

Type returned by this drain Read more

Type of potential errors that can be returned by this Drain

Handle one logging statement (Record) Read more

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

Avoid: See is_enabled

Avoid: See is_enabled

Avoid: See is_enabled

Avoid: See is_enabled

Avoid: See is_enabled

Avoid: See is_enabled

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

Filter logging records passed to Drain Read more

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

Map logging errors returned by this drain Read more

Ignore results returned by this drain Read more

Make Self panic when returning any errors Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.