With the deprecated client Raven you could ignore troublesome errors :
JavaScript
x
7
1
Raven.config('your-dsn', {
2
ignoreErrors: [
3
'Can't execute code from freed script',
4
/SecurityError: DOM Exception 18$/
5
]
6
}).install();
7
The only way I found with the new client is with the before-send
hook :
https://docs.sentry.io/error-reporting/configuration/filtering/?platform=browser#before-send
JavaScript
1
12
12
1
import * as Sentry from '@sentry/browser';
2
3
init({
4
beforeSend(event, hint) {
5
const { message } = hint.originalException;
6
if (message && message.match(/database unavailable/i)) {
7
return null;
8
}
9
return event;
10
}
11
});
12
I searched all over the docs but didn’t find a global way to ignore errors.
Advertisement
Answer
There seems to be an ignoreErrors
config option. It’s documented in their example app here: