mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 09:00:07 +00:00
Merge pull request #9112 from overleaf/ii-sentry-extension-errors
[web] Prevent logging of extension errors to Sentry GitOrigin-RevId: 42bc4ec045585586d2a6fe695cd55ef98adf2bf9
This commit is contained in:
parent
678148d1b9
commit
4dc9f71946
1 changed files with 15 additions and 2 deletions
|
@ -40,6 +40,12 @@ function sentryReporter() {
|
|||
/Non-Error promise rejection captured with value: Object Not Found Matching Id/,
|
||||
],
|
||||
|
||||
denyUrls: [
|
||||
// Chrome extensions
|
||||
/extensions\//i,
|
||||
/^chrome:\/\//i,
|
||||
],
|
||||
|
||||
beforeSend(event) {
|
||||
// Limit number of events sent to Sentry to 100 events "per page load",
|
||||
// (i.e. the cap will be reset if the page is reloaded). This prevent
|
||||
|
@ -47,9 +53,16 @@ function sentryReporter() {
|
|||
eventCount++
|
||||
if (eventCount > 100) {
|
||||
return null // Block the event from sending
|
||||
} else {
|
||||
return event
|
||||
}
|
||||
|
||||
// Do not send events related to third party code (extensions)
|
||||
if (
|
||||
event.extra?.arguments?.[0]?.type === 'UNSTABLE_editor:extensions'
|
||||
) {
|
||||
return null // Block the event from sending
|
||||
}
|
||||
|
||||
return event
|
||||
},
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue