From b3109f4a35e2d3f074f384ef324924e08449b853 Mon Sep 17 00:00:00 2001 From: Karelian Pie Date: Mon, 19 Jun 2023 11:22:20 +0300 Subject: [PATCH] chore: Increase tracesSampleRate to 0.2 --- sentry.client.config.ts | 2 +- sentry.edge.config.ts | 2 +- sentry.server.config.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sentry.client.config.ts b/sentry.client.config.ts index dd4553e2d..b49463d90 100644 --- a/sentry.client.config.ts +++ b/sentry.client.config.ts @@ -8,7 +8,7 @@ Sentry.init({ dsn: process.env.SENTRY_DSN, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 0, + tracesSampleRate: 0.2, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false, diff --git a/sentry.edge.config.ts b/sentry.edge.config.ts index da13a7ea8..d72df80d5 100644 --- a/sentry.edge.config.ts +++ b/sentry.edge.config.ts @@ -9,7 +9,7 @@ Sentry.init({ dsn: process.env.SENTRY_DSN, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 0, + tracesSampleRate: 0.1, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false diff --git a/sentry.server.config.ts b/sentry.server.config.ts index 40d4aae90..d8283e4c4 100644 --- a/sentry.server.config.ts +++ b/sentry.server.config.ts @@ -8,7 +8,7 @@ Sentry.init({ dsn: process.env.SENTRY_DSN, // Adjust this value in production, or use tracesSampler for greater control - tracesSampleRate: 0, + tracesSampleRate: 0.2, // Setting this option to true will print useful information to the console while you're setting up Sentry. debug: false