Dedupe JS events to prevent 1000s repeated hitting Sentry

pull/1689/head
Qstick 4 years ago
parent 50c258cc5e
commit 92d0b4f931

@ -89,7 +89,10 @@ export default function createSentryMiddleware() {
release,
sendDefaultPii: true,
beforeSend: cleanseData,
integrations: [new Integrations.RewriteFrames({ iteratee: stripUrlBase })]
integrations: [
new Integrations.RewriteFrames({ iteratee: stripUrlBase }),
new Integrations.Dedupe()
]
});
sentry.configureScope((scope) => {

Loading…
Cancel
Save