We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, replay sample rates are configured directly in the integration:
Sentry.init({ sampleRate: 0.5, tracesSampleRate: 0.1, profilesSampleRate: 0.25, integrations: [ new Replay({ sessionSampleRate: 0.1, errorSampleRate: 1.0 }) });
This is inconsistent.
We want to move these options to the top level:
Sentry.init({ sampleRate: 0.5, tracesSampleRate: 0.1, profilesSampleRate: 0.25, replaysSampleRate: 0.5, replaysOnErrorSampleRate: 1.0, integrations: [ new Replay() });
The goal is, for now, to deprecate the "old" options directly on Replay and remove them in a later release.
The text was updated successfully, but these errors were encountered:
mydea
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Problem Statement
Currently, replay sample rates are configured directly in the integration:
This is inconsistent.
Solution Brainstorm
We want to move these options to the top level:
The goal is, for now, to deprecate the "old" options directly on Replay and remove them in a later release.
Steps
The text was updated successfully, but these errors were encountered: