Skip to content

Commit

Permalink
Increase sentry traces sample rate
Browse files Browse the repository at this point in the history
  • Loading branch information
hbriese committed Oct 1, 2023
1 parent fee6eef commit c9660fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/provider/SentryProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export const SentryProvider = ({ children }: SentryProviderProps) => {
dsn: CONFIG.sentryDsn,
environment: CONFIG.env,
enableInExpoDevelopment: false,
sampleRate: 1, // Error sampling
tracesSampleRate: 0.25, // Performance sampling
sampleRate: 1.0, // Error sampling
tracesSampleRate: 1.0, // Performance sampling
attachStacktrace: true,
integrations: [
new Sentry.ReactNativeTracing({
Expand Down

0 comments on commit c9660fc

Please sign in to comment.