Change Sentry tracesSampleRate to 0.2

This commit is contained in:
delivan 2023-01-06 16:55:16 +09:00
parent 3b32610182
commit 44b08084e5
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ Sentry.init({
enabled: !!SENTRY_DSN,
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
tracesSampleRate: 0.2,
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so

View File

@ -10,7 +10,7 @@ Sentry.init({
enabled: !!SENTRY_DSN,
dsn: SENTRY_DSN,
// Adjust this value in production, or use tracesSampler for greater control
tracesSampleRate: 1.0,
tracesSampleRate: 0.2,
// ...
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so