32 releases

new 0.32.3 Apr 16, 2024
0.32.2 Jan 30, 2024
0.32.1 Dec 18, 2023
0.32.0 Nov 28, 2023
0.19.0 Jun 18, 2020

#795 in Debugging

Download history 33668/week @ 2024-01-01 38787/week @ 2024-01-08 31380/week @ 2024-01-15 47206/week @ 2024-01-22 36569/week @ 2024-01-29 42723/week @ 2024-02-05 49062/week @ 2024-02-12 22819/week @ 2024-02-19 53797/week @ 2024-02-26 32480/week @ 2024-03-04 47605/week @ 2024-03-11 47298/week @ 2024-03-18 67229/week @ 2024-03-25 65999/week @ 2024-04-01 29197/week @ 2024-04-08 35165/week @ 2024-04-15

198,564 downloads per month
Used in 9 crates (2 directly)

Apache-2.0

235KB
4.5K SLoC

Sentry

Sentry Rust SDK: sentry-anyhow

Adds support for capturing Sentry errors from anyhow::Error.

This integration adds a new event source, which allows you to create events directly from an anyhow::Error struct. As it is only an event source it only needs to be enabled using the anyhow cargo feature, it does not need to be enabled in the call to sentry::init.

This integration does not need to be installed, instead it provides an extra function to capture anyhow::Error, optionally exposing it as a method on the sentry::Hub using the AnyhowHubExt trait.

Like a plain std::error::Error being captured, anyhow::Error is captured with a chain of all error sources, if present. See sentry::capture_error for details of this.

Example

use sentry_anyhow::capture_anyhow;

fn function_that_might_fail() -> anyhow::Result<()> {
    Err(anyhow::anyhow!("some kind of error"))
}

if let Err(err) = function_that_might_fail() {
    capture_anyhow(&err);
}

Features

The backtrace feature will enable the corresponding feature in anyhow and allow you to capture backtraces with your events. It is enabled by default.

Resources

License: Apache-2.0

Dependencies

~9–12MB
~255K SLoC