Sentry: filter out useless events, tag ErrorBoundary page crashes

This commit is contained in:
Alex Gleason
2022-08-25 13:49:08 -05:00
parent 5ad4303c3e
commit f8f8b4f2b9
2 changed files with 28 additions and 3 deletions

View File

@@ -56,7 +56,12 @@ class ErrorBoundary extends React.PureComponent<Props, State> {
textarea: HTMLTextAreaElement | null = null;
componentDidCatch(error: any, info: any): void {
captureException(error);
captureException(error, {
tags: {
// Allow page crashes to be easily searched in Sentry.
ErrorBoundary: 'yes',
},
});
this.setState({
hasError: true,