-
Notifications
You must be signed in to change notification settings - Fork 223
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
Allow searching of crash reports by exception type #485
Comments
@winnieli1208 any update on if it's something that you want to support eventually? If yes, would that be in the near/med/far-term roadmap? |
HI @tauntz, Winnie and I have chatted about this functionality a few times. I would say it is definitely something we hope to do at some point. I don't know when but I believe it is safe to say we intend to do this one in the near/med term. A loose spec for it is written up at least ;) |
Hello @tauntz. We just released search by Exception Type, feel free to use it. It is available as part of text search and as a separate filter: |
@ewgenius I see the filter but I have not managed to get it actually to filter anything for Android projects. It works however perfectly fine for iOS. Could it be that this was only implemented for iOS projects? |
Hi @tauntz - this was implemented for all platforms so it should work fine for Android. Can you start a support thread (blue chat bubble on the bottom right) so our team can take a closer look? Thanks! |
Upon further investigation, what @tauntz mentioned indeed is a bug. When the exception doesn't contain an application exception type, we use the OS exception type as a fallback for the error group's exception type. Unfortunately we didn't realize that for the Search implementation, so only the application exception type is used. With the holidays, I doubt we will have a fix by end of the year. But hopefully we can work on this in the beginning of the new year. Thanks for reaching out! |
Describe the solution you'd like
We'd like to be able to search for crash reports based on the exception type.
Describe alternatives you've considered
Tried to search for crashes based on other parameters but for some types of crashes the only unique and common thing between them is the thrown exception itself.
Additional context
The best example of a crash type that's impossible to group/find overall statistics for at the moment is
java.lang.OutOfMemoryError
(but it's not limited to that). It will be thrown from whatever method is failing to allocate memory so the method, class and reason will never be the same and these crashes will never be grouped in the current UI. It's also impossible to get an overview about how manyOutOfMemoryError
crashes have happened per version/across versions/frequency etc due to the fact that it's not possible to search for them in any other way than to manually click through all the crash report pages and search the browser window for the exception class.The text was updated successfully, but these errors were encountered: