UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

71 lines 3.36 kB
const SENTRY_DSN = 'https://0b10c8e02fb44d8796c047b102c9bee8@o55978.ingest.sentry.io/4505129224110080'; const packageName = 'editor-common'; // Sentry doesn't accept '/' in its releases https://docs.sentry.io/platforms/javascript/configuration/releases/ const packageVersion = "78.23.1"; const sanitiseSentryEvents = (data, _hint) => { // Remove URL as it has UGC // TODO: Sanitise the URL instead of just removing it if (data.request) { delete data.request.url; } return data; }; export const logException = async (error, tags) => { try { var _process$env$CLOUD_EN; // We don't want to log exceptions for branch deploys or in development / test scenarios if (process.env.NODE_ENV !== 'production' || process.env.CLOUD_ENV === 'branch') { return; } const { BrowserClient, defaultIntegrations, getCurrentHub } = await import( /* webpackChunkName: "@atlaskit-internal_editor-sentrybrowser" */'@sentry/browser'); const { ExtraErrorData } = await import( /* webpackChunkName: "@atlaskit-internal_editor-sentryintegrations" */'@sentry/integrations'); const sentryOptions = { dsn: SENTRY_DSN, release: `${packageName}@${packageVersion}`, environment: (_process$env$CLOUD_EN = process.env.CLOUD_ENV) !== null && _process$env$CLOUD_EN !== void 0 ? _process$env$CLOUD_EN : 'unknown', ignoreErrors: [ // Network issues /^network error/i, /^network failure/i, 'TypeError: Failed to fetch', // A benign error, see https://stackoverflow.com/a/50387233/2645305 'ResizeObserver loop limit exceeded', /ResizeObserver loop completed with undelivered notifications/], autoSessionTracking: false, integrations: _integrations => [ // Remove the Breadcrumbs integration from the default as it's too likely to log UGC/PII // https://docs.sentry.io/platforms/javascript/configuration/integrations/default/ ...defaultIntegrations.filter(({ name }) => name !== 'Breadcrumbs'), // Extracts all non-native attributes from the error object and attaches them to the event as the extra data // https://docs.sentry.io/platforms/javascript/configuration/integrations/plugin/?original_referrer=https%3A%2F%2Fduckduckgo.com%2F#extraerrordata new ExtraErrorData()], beforeSend: sanitiseSentryEvents }; // Use a client to avoid picking up the errors from parent applications const client = new BrowserClient(sentryOptions); const hub = getCurrentHub(); hub.bindClient(client); hub.withScope(scope => { var _buildInfo; scope.setTags({ // Jira environment variables 'jira-bundler': window.BUNDLER_VERSION, 'jira-variant': window.BUILD_VARIANT, 'jira-release': window.BUILD_KEY, // Confluence environment variables 'confluence-frontend-version': (_buildInfo = window.__buildInfo) === null || _buildInfo === void 0 ? void 0 : _buildInfo.FRONTEND_VERSION, ...tags }); // Explicitly remove the breadcrumbs as it's too likely to log UGC/PII to side-step the hub integrations not being respected scope.clearBreadcrumbs(); hub.captureException(error); }); return client.close(); } catch (_error) { // Error reporting failed, we don't want this to generate more errors } };