Closed
Description
OS:
- Windows
- MacOS
- Linux
Platform:
- iOS
- Android
SDK:
-
@sentry/react-native
(>= 1.0.0) -
react-native-sentry
(<= 0.43.2)
SDK version: 5.5.0
react-native
version: 0.69.10
Are you using Expo?
- Yes
- No
Are you using sentry.io or on-premise?
- sentry.io (SaaS)
- on-premise
If you are using sentry.io, please post a link to your issue so we can take a look:
[Link to issue]
Configuration:
(@sentry/react-native
)
Sentry.init({
dsn: 'redacted',
enableAutoSessionTracking: true,
environment: config.environment,
ignoreErrors: [
// Axios throw error from createError.js, please see useFetch for error log
/Request\sfailed\swith\sstatus\scode.*/,
// react-native-fingerprint-scanner
/.*biometric.*/,
// appsflyer
/.*inapps\.appsflyer\.com.*/,
/.*com\.appsflyer\.sdk\.network.*/,
],
integrations: [
new Sentry.ReactNativeTracing({
enableUserInteractionTracing: true,
routingInstrumentation,
shouldCreateSpanForRequest: url => {
const urlRedacted = /redacted/;
const urlLocalhost = /localhost/;
return !url.match(urlRedacted) && !url.match(urlLocalhost);
},
// ... other options
}),
],
sampleRate: 0.2,
// Sessions close after app is 10 seconds in the background.
sessionTrackingIntervalMillis: 10000,
tracesSampleRate: 0.2,
});
I have following issue:
[Description]
I saw issue being logged on Sentry that related to error reporting. Not sure what caused this issues.
tracking.enable$argument_0.onUnhandled

Actual result:
[Actual result]
Expected result:
No issues related to sentry reported
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Status
Done
Status
No status
Status
Waiting for: Product Owner