sentry-rust
sentry-rust copied to clipboard
Official Sentry SDK for Rust
I have been trying to integrate sentry tracing with to one of the applications at work and I'm having some issues with it. When trying to debug it further, I...
Hi, I cross compile my code from Mac OS to Windows using MinGW and the target `x86_64-pc-windows-gnu`. I use the `RUSTFLAGS="-g -C opt-level=3"` to generate debug information when being in...
### Environment sentry v0.31.5 ### Steps to Reproduce There are multiple ways that Sentry can silently lose error events: * When any of the sentry transport backends fail to send...
I have several services which are written in Rust and communicate over HTTP APIs, all these services are going to be instrumented via Sentry. I am trying to setup distributed...
### Problem Statement - The "Getting Started" documentation for sentry-rust platform may not conform to the newly defined format, which includes the steps "Install", "Configure", "Verify", and the optional "Next...
Rust as of 1.65.0 (released in 2022-11) now ships with a `Backtrace` in std. sentry-backtrace should support its usage by providing another `backtrace_to_stacktrace` function that accepts a `std::backtrace::Backtrace` instead of...
As reported in #598, the `ClientOption::send_default_pii` flag is only used in `sentry-actix`. It should really be used whenever an error is sent.
### Environment Rust 1.70.0 Sentry 0.31.5 with tracing feature ### Steps to Reproduce 1. Enable PII by setting `send_default_pii: true` in the `ClientOptions`. 2. Enable Sentry integration for the tracing...
### Environment actix-web What version are you running? Etc. `0.31.5` ### Steps to Reproduce When setting up sentry to attach stack traces, as below: ```rust let _guard: sentry::ClientInitGuard = sentry::init((...
I don't know if I missunderstand the documentation for sentry tracing integration but I can not get event capturing to work. This my test code: ```rust #[tokio::main] #[tracing::instrument] async fn...