58 releases (30 breaking)

0.36.0 Jan 7, 2025
0.35.0 Nov 29, 2024
0.34.0 Jun 5, 2024
0.32.2 Jan 30, 2024
0.2.0 Jul 21, 2018

#127 in HTTP server

Download history 4973/week @ 2024-10-22 4879/week @ 2024-10-29 4091/week @ 2024-11-05 4503/week @ 2024-11-12 3790/week @ 2024-11-19 3422/week @ 2024-11-26 4128/week @ 2024-12-03 4363/week @ 2024-12-10 3854/week @ 2024-12-17 2332/week @ 2024-12-24 2865/week @ 2024-12-31 5532/week @ 2025-01-07 4852/week @ 2025-01-14 5124/week @ 2025-01-21 5093/week @ 2025-01-28 4312/week @ 2025-02-04

20,171 downloads per month
Used in hook0-api

Apache-2.0

250KB
4.5K SLoC

Sentry

Sentry Rust SDK: sentry-actix

This crate adds a middleware for actix-web that captures errors and report them to Sentry.

To use this middleware just configure Sentry and then add it to your actix web app as a middleware. Because actix is generally working with non sendable objects and highly concurrent this middleware creates a new hub per request. As a result many of the sentry integrations such as breadcrumbs do not work unless you bind the actix hub.

Example

use std::io;

use actix_web::{get, App, Error, HttpRequest, HttpServer};

#[get("/")]
async fn failing(_req: HttpRequest) -> Result<String, Error> {
    Err(io::Error::new(io::ErrorKind::Other, "An error happens here").into())
}

fn main() -> io::Result<()> {
    let _guard = sentry::init(sentry::ClientOptions {
        release: sentry::release_name!(),
        ..Default::default()
    });
    std::env::set_var("RUST_BACKTRACE", "1");

    let runtime = tokio::runtime::Builder::new_multi_thread()
        .enable_all()
        .build()?;
    runtime.block_on(async move {
        HttpServer::new(|| {
            App::new()
                .wrap(sentry_actix::Sentry::new())
                .service(failing)
        })
        .bind("127.0.0.1:3001")?
        .run()
        .await
    })
}

Using Release Health

The actix middleware will automatically start a new session for each request when auto_session_tracking is enabled and the client is configured to use SessionMode::Request.

let _sentry = sentry::init(sentry::ClientOptions {
    release: sentry::release_name!(),
    session_mode: sentry::SessionMode::Request,
    auto_session_tracking: true,
    ..Default::default()
});

Reusing the Hub

This integration will automatically create a new per-request Hub from the main Hub, and update the current Hub instance. For example, the following will capture a message in the current request's Hub:

sentry::capture_message("Something is not well", sentry::Level::Warning);

Resources

License: Apache-2.0

Dependencies

~15–26MB
~445K SLoC