Replaced by separate foundations-sentry crate.
sentry and metrics only.Expand description
Sentry hook for tracking sentry events with metrics and rate-limiting them.
This module provides a sentry hook that increments the
sentry_events_total{level=<...>} metric for each sentry event. If a
previous before_send hook exists, it will be executed after rate limiting
and before the metric is incremented. Only unfiltered events are counted.
For rate-limiting, we group events by fingerprint. Each group has a separate rate limiter. The fingerprint of a sentry event is the first out of the following attributes that is present and not defaulted:
- Explicit
event.fingerprint - Event message
- First exception value, or exception type if no value is set
- Fallback: event level name (e.g.,
error)
note: a clone of a client’s sentry_core::ClientOptions will have the
hook installed. This means “child” sentry clients will inherit the hook. A
reinstall is only required if the sentry_core::ClientOptions::before_send
field is overwritten.
§Usage
To install the hook:
fn main() {
let mut client_opts = sentry_core::ClientOptions::default();
let sentry_settings = foundations::sentry::SentrySettings::default();
foundations::sentry::install_hook_with_settings(&mut client_opts, &sentry_settings);
// sentry::init(client_opts);
}Modules§
- metrics
Deprecated - Sentry event related metrics.
Structs§
- Sentry
Settings Deprecated - Sentry hook settings.
Enums§
- Level
- Represents the level of severity of an event or breadcrumb.
Functions§
- install_
hook Deprecated - Install the sentry hook on the provided client options with default settings.
- install_
hook_ with_ settings Deprecated - Install the sentry hook on the provided client options.