Add account hierarchy framework with migrations, RLS policies, and UI components
This commit is contained in:
@@ -22,10 +22,9 @@ export function initializeSentryBrowserClient(
|
||||
// https://docs.sentry.io/platforms/javascript/configuration/integrations/
|
||||
],
|
||||
|
||||
// Set tracesSampleRate to 1.0 to capture 100%
|
||||
// of transactions for performance monitoring.
|
||||
// We recommend adjusting this value in production
|
||||
tracesSampleRate: props?.tracesSampleRate ?? 1.0,
|
||||
// Capture 20% of transactions for performance monitoring.
|
||||
// Increase for debugging, decrease for high-traffic production.
|
||||
tracesSampleRate: props?.tracesSampleRate ?? 0.2,
|
||||
|
||||
// Capture Replay for 10% of all sessions,
|
||||
// plus for 100% of sessions with an error
|
||||
|
||||
@@ -17,7 +17,9 @@ export function initializeSentryServerClient(
|
||||
return init({
|
||||
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||||
|
||||
// ...
|
||||
// Capture 20% of transactions for performance monitoring.
|
||||
// Increase for debugging, decrease for high-traffic production.
|
||||
tracesSampleRate: 0.2,
|
||||
|
||||
// Note: if you want to override the automatic release value, do not set a
|
||||
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
||||
|
||||
Reference in New Issue
Block a user