Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add profiles sampling to sentry (#1237)

authored by

Ansh and committed by
GitHub
88357d5c 4cc2695d

+5
+5
src/lib/sentry.ts
··· 15 15 environment: __DEV__ ? 'development' : 'production', // Set the environment 16 16 enableAutoPerformanceTracking: true, // Enable auto performance tracking 17 17 tracesSampleRate: 0.5, // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring. // TODO: this might be too much in production 18 + _experiments: { 19 + // The sampling rate for profiling is relative to TracesSampleRate. 20 + // In this case, we'll capture profiles for 50% of transactions. 21 + profilesSampleRate: 0.5, 22 + }, 18 23 integrations: isNative 19 24 ? [ 20 25 new Sentry.Native.ReactNativeTracing({