diff --git a/portal/server/sentry.client.config.ts b/portal/server/sentry.client.config.ts index 3c82211..59135fb 100644 --- a/portal/server/sentry.client.config.ts +++ b/portal/server/sentry.client.config.ts @@ -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, diff --git a/portal/server/sentry.edge.config.ts b/portal/server/sentry.edge.config.ts index caf3332..612c577 100644 --- a/portal/server/sentry.edge.config.ts +++ b/portal/server/sentry.edge.config.ts @@ -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, diff --git a/portal/server/sentry.server.config.ts b/portal/server/sentry.server.config.ts index 7994911..d3327cf 100644 --- a/portal/server/sentry.server.config.ts +++ b/portal/server/sentry.server.config.ts @@ -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,