Here is my sentry configuration
Sentry.init({
dsn:"https://[email protected]/vakue",
debug: true,
autoSessionTracking: true,
autoPerformance: true,
release:"June 24.6.0",
enableTracing:true,
initialScope: {
tags: { environment:"Sys-local", "applicationVersion":"24.6.0" },
user: {
id: 14, email: "anand.maurya", name: "anand.maurya", username: "anand maurya", data: {
timezone: "America/Los_Angeles",
accountName:"Product",
tracingData:"29%"
}
},
},
profilesSampleRate: 1.0,
tracePropagationTargets: ['localhost', /^\//],
// Performance Monitoring
tracesSampleRate: 1.0, // Capture 100% of the transactions
// Session Replay
sendDefaultPii: true,
replaysSessionSampleRate: 0.1,
replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur.
environment:"Sys-Local",
integrations: [Sentry.browserTracingIntegration(), Sentry.replayIntegration()]
});
});
Let me know if anything I am Missing here