[Sentry] middleware for [conduit]
transaction
field support (aka. the route pattern that was used by [conduit-router])The "Minimum Supported Rust Version" of this project is: v1.46.0
```rust fn build_app() -> impl Hander { let mut router = RouteBuilder::new(); router.get("/", healthy); router.get("/msg", message); router.get("/err", error); router.get("/panic", panic);
let mut builder = MiddlewareBuilder::new(router);
builder.add(SentryMiddleware::default());
builder
} ```
The full example code is available in the examples folder.
This project is licensed under either of
Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.