IO-3162 Sentry package upgrades and refactors.

This commit is contained in:
Patrick Fic
2025-02-28 12:15:47 -08:00
parent f0af12bc2c
commit ba63e8054f
7 changed files with 179 additions and 408 deletions

View File

@@ -0,0 +1,60 @@
import * as Sentry from "@sentry/react";
import { useEffect } from "react";
import { createRoutesFromChildren, matchRoutes, useLocation, useNavigationType } from "react-router-dom";
import InstanceRenderManager from "./instanceRenderMgr";
//if (import.meta.env.PROD) {
Sentry.init({
dsn: InstanceRenderManager({
imex: "https://fd7e89369b6b4bdc9c6c4c9f22fa4ee4@o492140.ingest.sentry.io/5651027",
rome: "https://a6acc91c073e414196014b8484627a61@o492140.ingest.sentry.io/4504561071161344"
}),
ignoreErrors: [
"ResizeObserver loop",
"ResizeObserver loop limit exceeded",
"Module specifier, 'fs' does not start",
"Module specifier, 'zlib' does not start with",
"Messaging: This browser doesn't support the API's required to use the Firebase SDK.",
"Failed to update a ServiceWorker for scope"
],
integrations: [
// See docs for support of different versions of variation of react router
// https://docs.sentry.io/platforms/javascript/guides/react/configuration/integrations/react-router/
Sentry.reactRouterV6BrowserTracingIntegration({
useEffect,
useLocation,
useNavigationType,
createRoutesFromChildren,
matchRoutes
}),
Sentry.replayIntegration()
],
// integrations: [
// Sentry.reactRouterV6BrowserTracingIntegration({
// useEffect,
// useLocation,
// useNavigationType,
// createRoutesFromChildren,
// matchRoutes
// }),
// Sentry.replayIntegration({
// maskAllText: false,
// blockAllMedia: true
// }),
// Sentry.browserTracingIntegration()
// ],
tracePropagationTargets: [
"api.imex.online",
"api.test.imex.online",
"db.imex.online",
"api.romeonline.io",
"api.test.romeonline.io",
"db.romeonline.io"
],
tracesSampleRate: 1.0,
replaysOnErrorSampleRate: 1.0,
environment: import.meta.env.MODE,
//debug: import.meta.env.DEV
});
//}