-
Notifications
You must be signed in to change notification settings - Fork 185
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
Skip reporting some client errors to Sentry #4873
Comments
Hi @bjester , I want to work on this Issue, Could you please assign this to me?To proceed, could you help clarify:
Let me know if there’s anything specific you'd like me to focus on while addressing this! |
@SukhvirKooner I've assigned you
|
Hi , |
No problem, thanks @SukhvirKooner |
PR Update: Suppression of Request Abort and Redirect Request ErrorsI have addressed both concerns outlined in the issue:
These changes minimize irrelevant error logs, making it easier to spot critical issues. A PR has been raised for review. Looking forward to your feedback. |
Current behavior
Studio's Axios network client is configured to intercept and log network request errors. We receive many errors that aren't very illuminating, create noise, and some we can possibly prevent from reaching Sentry because we don't care about them:
Request aborted
: presumably this comes from XHR requests that are aborted as the user navigates to a different pageDesired behavior
The network client:
navigate
event)Value add
Minimizes the noise making important Sentry errors easier to identify
Possible tradeoffs
Regarding 302 redirects, a downside would be that if a bug occurs related to them, we wouldn't have any hint like we do today.
The text was updated successfully, but these errors were encountered: