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.
use std::env;
use std::io;
use actix_web::{get, App, Error, HttpRequest, HttpServer};
use sentry::Level;
#[get("/")]
async fn failing(_req: HttpRequest) -> Result<String, Error> {
Err(io::Error::new(io::ErrorKind::Other, "An error happens here").into())
}
#[actix_web::main]
async fn main() -> io::Result<()> {
let _guard = sentry::init(());
env::set_var("RUST_BACKTRACE", "1");
HttpServer::new(|| {
App::new()
.wrap(sentry_actix::Sentry::new())
.service(failing)
})
.bind("127.0.0.1:3001")?
.run()
.await?;
Ok(())
}
This integration will automatically update the current Hub instance. For example, the following will capture a message in the current request's Hub:
use sentry::Level;
sentry::capture_message("Something is not well", Level::Warning);
License: Apache-2.0
- Discord server for project discussions.
- Follow @getsentry on Twitter for updates