Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit e1fb540

Browse files
author
Julien Bouquillon
committed
fix(sentry): reduce tracesSampleRate
1 parent 1bfd4d3 commit e1fb540

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sentry.client.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Sentry.init({
1111
dsn: SENTRY_DSN ?? "",
1212
environment: SENTRY_ENV ?? "development",
1313
// Adjust this value in production, or use tracesSampler for greater control
14-
tracesSampleRate: 1.0,
14+
tracesSampleRate: 0.1,
1515
// ...
1616
// Note: if you want to override the automatic release value, do not set a
1717
// `release` value here - use the environment variable `SENTRY_RELEASE`, so

sentry.server.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Sentry.init({
1111
dsn: SENTRY_DSN ?? "",
1212
environment: SENTRY_ENV ?? "development",
1313
// Adjust this value in production, or use tracesSampler for greater control
14-
tracesSampleRate: 1.0,
14+
tracesSampleRate: 0.1,
1515
// ...
1616
// Note: if you want to override the automatic release value, do not set a
1717
// `release` value here - use the environment variable `SENTRY_RELEASE`, so

0 commit comments

Comments
 (0)