-
-
Notifications
You must be signed in to change notification settings - Fork 171
feat(backtrace): Stop truncating backtraces #925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
8d37fc6
feat(backtrace): Stop truncating backtraces
lcian c18475a
improve
lcian 23003aa
improve
lcian 18fbc61
changelog
lcian ea994de
wip
lcian 30c428a
changelog
lcian f2d74c2
changelog
lcian e05ce91
Merge branch 'master' into lcian/feat/no-truncation
lcian 4de3225
remove extra border frames (thanks cursor)
lcian ffb2fda
changelog
lcian File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,3 @@ | ||
| use sentry_core::protocol::{Frame, Stacktrace}; | ||
|
|
||
| use crate::utils::function_starts_with; | ||
|
|
||
| const WELL_KNOWN_NOT_IN_APP: &[&str] = &[ | ||
|
|
@@ -12,6 +10,7 @@ const WELL_KNOWN_NOT_IN_APP: &[&str] = &[ | |
| "sentry_core::", | ||
| "sentry_types::", | ||
| "sentry_backtrace::", | ||
| "sentry_tracing::", | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not having this would make a frame (that was previously trimmed away) belonging to |
||
| // these are not modules but things like __rust_maybe_catch_panic | ||
| "__rust_", | ||
| "___rust_", | ||
|
|
@@ -26,45 +25,9 @@ const WELL_KNOWN_NOT_IN_APP: &[&str] = &[ | |
| "futures_util::", | ||
| ]; | ||
|
|
||
| const WELL_KNOWN_BORDER_FRAMES: &[&str] = &[ | ||
| "std::panicking::begin_panic", | ||
| "core::panicking::panic", | ||
| // well-known library frames | ||
| "anyhow::", | ||
| "<sentry_log::Logger as log::Log>::log", | ||
| "tracing_core::", | ||
| ]; | ||
|
|
||
| /// A helper function to trim a stacktrace. | ||
| pub fn trim_stacktrace<F>(stacktrace: &mut Stacktrace, f: F) | ||
| where | ||
| F: Fn(&Frame, &Stacktrace) -> bool, | ||
| { | ||
| let known_cutoff = stacktrace | ||
| .frames | ||
| .iter() | ||
| .rev() | ||
| .position(|frame| match frame.function { | ||
| Some(ref func) => is_well_known_border_frame(func) || f(frame, stacktrace), | ||
| None => false, | ||
| }); | ||
|
|
||
| if let Some(cutoff) = known_cutoff { | ||
| let trunc = stacktrace.frames.len() - cutoff - 1; | ||
| stacktrace.frames.truncate(trunc); | ||
| } | ||
| } | ||
|
|
||
| /// Checks if a function is from a module that shall be considered not in-app by default | ||
| pub fn is_well_known_not_in_app(func: &str) -> bool { | ||
| WELL_KNOWN_NOT_IN_APP | ||
| .iter() | ||
| .any(|m| function_starts_with(func, m)) | ||
| } | ||
|
|
||
| /// Checks if a function is a well-known border frame | ||
| fn is_well_known_border_frame(func: &str) -> bool { | ||
| WELL_KNOWN_BORDER_FRAMES | ||
| .iter() | ||
| .any(|m| function_starts_with(func, m)) | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.