sentry-rust icon indicating copy to clipboard operation
sentry-rust copied to clipboard

Official Sentry SDK for Rust

Results 121 sentry-rust issues
Sort by recently updated
recently updated
newest added
trafficstars

### Environment What version are you running? Etc. ```toml sentry = { version = "0.27.0", features = ["backtrace", "contexts", "httpdate", "panic", "reqwest", "reqwest_", "rustls", "sentry-backtrace", "sentry-contexts", "sentry-panic", "sentry-tracing", "tokio", "transport",],...

> ansi_term is Unmaintained | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `ansi_term` | | Version | `0.12.1` | | URL...

I would like to use the Rust SDK from within vector to send metrics, without instrumenting the rest of the app. This example does not send anything: ``` use sentry::{metrics::Metric,...

Is there a way to do something similar like this ```Rust let layer = tower::ServiceBuilder::new() .layer(sentry_tower::NewSentryLayer::::new_from_top()) .layer(sentry_tower::SentryHttpLayer::with_transaction()); ``` but for Tonic? The description for sentry_tower::SentryHttpLayer::with_transaction() is `Creates a new Layer...

This is related to what was solved in this PR: https://github.com/getsentry/sentry-rust/pull/629 Currently all spans are propagated to context. I feel what's missing is that spans named "tags" should instead be...

Since anyhow 1.0.77, backtrace feature is not needed for Rust 1.65+ (https://github.com/dtolnay/anyhow/releases/tag/1.0.77). Because sentry has a higher MSRV than that, it's no longer necessary to enable this feature.

### Environment actix-web `4.4.0` actix-web-lab `0.19.1` sentry-tracing `0.31.7` sentry-actix `0.31.6` ### Steps to Reproduce 1. intercept incoming request with actix-web-lab middleware 2. call `sentry::add_breadcrumb(incoming_request)` before `next.call(req).await` 3. server executes logic...

### Environment Linux x86\_64 ### Steps to Reproduce 1. Build `SentryLayer` with both `event_filter` and `event_mapper` set. - `event_filter` ignores tracing events below `Level::ERROR`. - `event_mapper` always returns `EventMapping::Event(..)`. 3....

Rust
Docs

Hey, Thanks for providing Rust support. We're happily using `sentry` and `sentry-tracing` crates. Mostly all working well. We expose a ton of helpful debugging information through span attributes. As far...