Set all Sentry sample rates to 1.0

No users yet — capture everything. Traces, session replays, and error
replays all at 100%. Easy to dial back when traffic grows.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-25 02:51:17 +01:00 committed by GitHub
parent 119dc25f5a
commit 4291fa6c3f
4 changed files with 8 additions and 8 deletions

View file

@ -10,9 +10,9 @@ Sentry.init({
dsn: "https://a32ffcc575d34be072e91b20f247eeee@o4509530546634752.ingest.de.sentry.io/4509530555547728",
integrations: [Sentry.browserTracingIntegration(), Sentry.replayIntegration()],
environment: sentryEnvironment,
tracesSampleRate: sentryEnvironment === "ci" ? 0 : 0.1,
replaysSessionSampleRate: 0,
replaysOnErrorSampleRate: sentryEnvironment === "ci" ? 0 : 1.0,
tracesSampleRate: sentryEnvironment === "ci" ? 0 : 1.0,
replaysSessionSampleRate: sentryEnvironment === "ci" ? 0 : 1.0,
replaysOnErrorSampleRate: 1.0,
enabled: import.meta.env.PROD && sentryEnvironment !== "ci",
});

View file

@ -13,7 +13,7 @@ Sentry.init({
dsn: "https://a32ffcc575d34be072e91b20f247eeee@o4509530546634752.ingest.de.sentry.io/4509530555547728",
release: process.env.SENTRY_RELEASE,
environment: sentryEnvironment,
tracesSampleRate: 0.1,
tracesSampleRate: 1.0,
enabled: process.env.NODE_ENV === "production" && !process.env.CI,
});