Skip to content

Commit b1dfb7e

Browse files
authored
sentry: 0.1 sampling (supabase#43003)
1 parent ccf8ce2 commit b1dfb7e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

apps/studio/instrumentation-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Sentry.init({
103103
debug: false,
104104

105105
// Enable performance monitoring - Next.js routes and API calls are automatically instrumented
106-
tracesSampleRate: 0.03, // Capture 3% of transactions for performance monitoring
106+
tracesSampleRate: 0.001, // Capture 0.1% of transactions for performance monitoring
107107

108108
// [Ali] Filter out browser extensions and user scripts (FE-2094)
109109
// Using denyUrls to block known third-party script patterns

apps/studio/sentry.edge.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ Sentry.init({
1414
debug: false,
1515

1616
// Enable performance monitoring
17-
tracesSampleRate: 0.03, // Capture 3% of transactions for performance monitoring
17+
tracesSampleRate: 0.001, // Capture 0.1% of transactions for performance monitoring
1818
})

apps/studio/sentry.server.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Sentry.init({
1313
debug: false,
1414

1515
// Enable performance monitoring
16-
tracesSampleRate: 0.03, // Capture 3% of transactions for performance monitoring
16+
tracesSampleRate: 0.001, // Capture 0.1% of transactions for performance monitoring
1717
ignoreErrors: [
1818
// Used exclusively in Monaco Editor.
1919
'ResizeObserver',

0 commit comments

Comments
 (0)