Skip to content

Commit

Permalink
Lower sample rate
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Mysten committed Dec 24, 2024
1 parent 113d6ae commit a2be0f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion portal/server/sentry.client.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (config.enableSentry) {
dsn: config.sentryDsn,

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,
tracesSampleRate: 0.01,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: true,
Expand Down
2 changes: 1 addition & 1 deletion portal/server/sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (config.enableSentry) {
dsn: config.sentryDsn,

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,
tracesSampleRate: 0.01,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
Expand Down
2 changes: 1 addition & 1 deletion portal/server/sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (config.enableSentry) {
dsn: config.sentryDsn,

// Define how likely traces are sampled. Adjust this value in production, or use tracesSampler for greater control.
tracesSampleRate: 1,
tracesSampleRate: 0.01,

// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,
Expand Down

0 comments on commit a2be0f9

Please sign in to comment.