Skip to content

Commit

Permalink
chore: Update Sentry Performance Sampling utils.js
Browse files Browse the repository at this point in the history
  • Loading branch information
sethkfman authored Oct 15, 2024
1 parent f9f602a commit 8e03f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/util/sentry/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ export function setupSentry() {
]
: integrations,
// Set tracesSampleRate to 1.0, as that ensures that every transaction will be sent to Sentry for development builds.
tracesSampleRate: __DEV__ ? 1.0 : 0.08,
tracesSampleRate: __DEV__ ? 1.0 : 0.04,
beforeSend: (report) => rewriteReport(report),
beforeBreadcrumb: (breadcrumb) => rewriteBreadcrumb(breadcrumb),
beforeSendTransaction: (event) => excludeEvents(event),
Expand Down

0 comments on commit 8e03f02

Please sign in to comment.