mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
991c4f9876
[misc] expose release and environment to frontend GitOrigin-RevId: 2adab7cfb2c63f6d5bc34c367393449c84ef2690
41 lines
1.4 KiB
JavaScript
41 lines
1.4 KiB
JavaScript
// Conditionally enable Sentry based on whether the DSN token is set
|
|
// Conditionally enable Sentry based on whether the DSN token is set
|
|
if (window.ExposedSettings.sentryDsn) {
|
|
import(/* webpackChunkName: "sentry" */ '@sentry/browser').then(Sentry => {
|
|
let eventCount = 0
|
|
|
|
Sentry.init({
|
|
dsn: window.ExposedSettings.sentryDsn,
|
|
release: window.ExposedSettings.sentryRelease,
|
|
environment: window.ExposedSettings.sentryEnvironment,
|
|
|
|
// Ignore errors unless they come from our origins
|
|
// Adapted from: https://docs.sentry.io/platforms/javascript/#decluttering-sentry
|
|
whitelistUrls: [
|
|
new RegExp(window.ExposedSettings.sentryAllowedOriginRegex)
|
|
],
|
|
|
|
ignoreErrors: [
|
|
// Ignore very noisy error
|
|
'SecurityError: Permission denied to access property "pathname" on cross-origin object'
|
|
],
|
|
|
|
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
|
|
// hitting their server-side event cap.
|
|
eventCount++
|
|
if (eventCount > 100) {
|
|
return null // Block the event from sending
|
|
} else {
|
|
return event
|
|
}
|
|
}
|
|
})
|
|
|
|
Sentry.setUser({ id: window.user_id })
|
|
|
|
// Previously Raven added itself as a global, so we mimic that old behaviour
|
|
window.Raven = Sentry
|
|
})
|
|
}
|