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

I believe this is relevant for the actix and tower-http integrations. We have no integration for *outgoing* requests so that is the responsibility of the API user. Copy-pasted: https://github.com/getsentry/sentry-python/issues/1742 ---...

Rust
Improvement

Hello there! Is it possible for any maintainer here to help me configure distributed tracing using Axum, Tracing, and Sentry? I am following the guide on custom instrumentation for distributed...

### Environment What version are you running? Etc. - Environment: SaaS, sentry.io - OS: macOS (not tested on others) - Version: 0.32.2, `tracing` feature enabled ### Steps to Reproduce This...

### Environment I'm instrumenting an axum web app, using the default set of tower middleware, tags / user fields set using `sentry::configure_scope` land on error reporting events, but they are...

I've used sentry quite a bit, and a very common issue is that you end up with two different versions of sentry-core in your application, which results in errors being...

Feature
Rust

Hi, The performance metrics of our apps are skewed by a lot of super-fast queries from our load balancer to the healthcheck endpoints. We would appreciate implementing the Sampling function...

### Environment What version are you running? Etc. 0.32.2 ### Steps to Reproduce 1. Create tracing span: ``` tracing::span!( tracing::level::INFO "request", tags.http.url = field::Empty, tags.protocol = field::Empty, tags.request_id = field::Empty,...

Hi, I think sentry experienced an outage yesterday. We discovered this when one of our production services went down. After some debugging we found that a sentry service was returning...

This is proposal how to improve tracing layer to handle concurrency better This changes logic of transaction activation/deactivation from being tied to ctor/dtor and instead tied to enter/exit The reason...

This is prototype to attach tagged data for tracing spans Please let me know if it is suitable and I'll see about unit tests if necessary Fixes #653