From d878bc57c4bf9e2633413d23dd316cbd5b560caa Mon Sep 17 00:00:00 2001 From: pa Date: Sat, 15 Nov 2025 09:33:22 +0900 Subject: [PATCH] tweak sentry config --- src/plugin/sentry.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugin/sentry.js b/src/plugin/sentry.js index 84f68945..a30323c7 100644 --- a/src/plugin/sentry.js +++ b/src/plugin/sentry.js @@ -40,7 +40,7 @@ export async function initSentry(app) { release: version, replaysSessionSampleRate: 0, replaysOnErrorSampleRate: 1.0, - tracesSampleRate: 0.05, + tracesSampleRate: 0.001, beforeSend(event, hint) { const error = hint.originalException; if (error && typeof error.message === 'string') { @@ -75,7 +75,6 @@ export async function initSentry(app) { blockAllMedia: true }), Sentry.browserTracingIntegration({ router }), - Sentry.browserProfilingIntegration(), Sentry.vueIntegration({ tracingOptions: { trackComponents: true