Reduce Sentry noise (#1606)

This commit is contained in:
Manav Rathi 2024-02-09 16:37:08 +05:30 committed by GitHub
commit e59e7436eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 26 deletions

View file

@ -1,6 +1,3 @@
import { setupSentry } from '@ente/shared/sentry/config/sentry.config.base';
const DEFAULT_SENTRY_DSN =
'https://e2ccc39d811640b49602323774220955@sentry.ente.io/13';
setupSentry(DEFAULT_SENTRY_DSN);
setupSentry('https://ad075e4713480307bb8bc0811547c65e@sentry.ente.io/8');

View file

@ -1,5 +1,3 @@
import { setupSentry } from '@ente/shared/sentry/config/sentry.config.base';
const DEFAULT_SENTRY_DSN =
'https://bd3656fc40d74d5e8f278132817963a3@sentry.ente.io/2';
setupSentry(DEFAULT_SENTRY_DSN);
setupSentry('https://cbed7333f2810fbbdb692dcd76d8ca1a@sentry.ente.io/2');

View file

@ -7,6 +7,4 @@ export const isDisableSentryFlagSet = () => {
return process.env.NEXT_PUBLIC_DISABLE_SENTRY === 'true';
};
export const getSentryDSN = () => process.env.NEXT_PUBLIC_SENTRY_DSN;
export const getSentryRelease = () => process.env.SENTRY_RELEASE;

View file

@ -72,10 +72,6 @@ export const getFamilyPortalURL = () => {
return `https://family.ente.io`;
};
export const getSentryTunnelURL = () => {
return `https://sentry-reporter.ente.io`;
};
/*
It's a dev deployment (and should use the environment override for endpoints ) in three cases:
1. when the URL opened is that of the staging web app, or

View file

@ -1,33 +1,27 @@
import * as Sentry from '@sentry/nextjs';
import { getSentryTunnelURL } from '@ente/shared/network/api';
import { getSentryUserID } from '@ente/shared/sentry/utils';
import { runningInBrowser } from '@ente/shared/platform';
import { getHasOptedOutOfCrashReports } from '@ente/shared/storage/localStorage/helpers';
import { getIsSentryEnabled } from '@ente/shared/sentry/utils';
import {
getAppEnv,
getSentryDSN,
getSentryRelease,
} from '@ente/shared/apps/env';
import { getAppEnv, getSentryRelease } from '@ente/shared/apps/env';
export const setupSentry = async (DEFAULT_SENTRY_DSN: string) => {
export const setupSentry = async (dsn: string) => {
const HAS_OPTED_OUT_OF_CRASH_REPORTING =
runningInBrowser() && getHasOptedOutOfCrashReports();
if (!HAS_OPTED_OUT_OF_CRASH_REPORTING) {
const SENTRY_DSN = getSentryDSN() ?? DEFAULT_SENTRY_DSN;
const APP_ENV = getAppEnv();
const IS_ENABLED = getIsSentryEnabled();
const SENTRY_RELEASE = getSentryRelease();
Sentry.init({
dsn: SENTRY_DSN,
dsn,
enabled: IS_ENABLED,
environment: APP_ENV,
release: SENTRY_RELEASE,
attachStacktrace: true,
autoSessionTracking: false,
tunnel: getSentryTunnelURL(),
tunnel: 'https://sentry-reporter.ente.io',
beforeSend(event) {
event.request = event.request || {};
const currentURL = new URL(document.location.href);

View file

@ -28,8 +28,6 @@
"NEXT_PUBLIC_IS_TEST_APP",
"NODE_ENV",
"SENTRY_RELEASE",
"SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_SENTRY_DSN",
"NEXT_PUBLIC_SENTRY_ENV"
"SENTRY_AUTH_TOKEN"
]
}