We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
beforeSend
Currently, the following code will skip sending events from unknown child processes to Sentry but this still impacts the release health crash rate.
Sentry.init({ dsn: '__DSN__', beforeSend: (event) => { return event?.tags?.['process.type'] === 'unknown' ? null : event; }, });
Once these are merged and released, the Electron SDK won't need to forcibly set sessions as crashed:
fatal
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, the following code will skip sending events from unknown child processes to Sentry but this still impacts the release health crash rate.
Once these are merged and released, the Electron SDK won't need to forcibly set sessions as crashed:
fatal
events should set session as crashed sentry-javascript#15072fatal
events should set session as crashed sentry-javascript#15073The text was updated successfully, but these errors were encountered: