diff --git a/web/src/sentry.ts b/web/src/sentry.ts index 036c6ba404..16ae241d8a 100644 --- a/web/src/sentry.ts +++ b/web/src/sentry.ts @@ -1,5 +1,4 @@ import * as Sentry from "@sentry/browser"; -import {HttpClient as HttpClientIntegration} from "@sentry/integrations"; import {BrowserTracing} from "@sentry/tracing"; import _ from "lodash"; @@ -54,10 +53,6 @@ if (page_params.server_sentry_dsn) { new BrowserTracing({ tracePropagationTargets: url_matches, }), - new HttpClientIntegration({ - failedRequestStatusCodes: [500, 502, 503, 504], - failedRequestTargets: url_matches, - }), ], allowUrls: url_matches, sampleRate: page_params.server_sentry_sample_rate || 0,