Description
Environment
What version are you running? Etc.
0.34
Steps to Reproduce
- To exclude some of the generic crates that are not related to the core code path I was using
in_app_exclude
but it does not seem to exclude anything. On the docs it says: https://docs.rs/sentry/0.17.0/sentry/struct.ClientOptions.html#structfield.in_app_include:~:text=in_app_exclude%3A%20Vec,are%20never%20in_app
I tried something like this:
in_app_exclude: vec![
"backtrace",
"futures",
"futures_core",
"hyper",
"tokio",
"tracing",
"warp",
],
But it still does not exclude them for the stack trace.
Actual Result

This has been really annoying when trying to find the root cause of the issue. We prefer to use the sdk and not the issue grouping tab. Seems like a bug in the code?