High Failure Rate while using new SDK automatic instrumentation
See original GitHub issueOS:
- Windows
- MacOS
- Linux
Platform:
- iOS
- Android
SDK:
-
@sentry/react-native
(>= 1.0.0) -
react-native-sentry
(<= 0.43.2)
SDK version: 4.1.2
react-native
version: 0.67.4
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:
Configuration:
(@sentry/react-native
)
Sentry.init({
onReady: () => {
console.log(
`initialize sentry tracesampleRate: ${tracesSampleRate} sampleRate:${sampleRate}`,
);
},
dsn:DSN,
debug:false,
release:`${appVersion}`,
dist:`${versionCode}`,
environment:'android-production',
sampleRate,
tracesSampleRate,
maxBreadcrumbs,
integrations,
enableOutOfMemoryTracking:false,
attachStacktrace: true,
beforeSend,
beforeBreadcrumb
});
I have following issue: in dashboard sentry i found a very high failure rate, this happened when i upgraded the sdk to a newer version, also i have tried update to 4.2.3 but still face the same issue
[Description]
Steps to reproduce:
- Step 1 install @sentry/react-native v 4.1.2
- Step 2 build and run app
Actual result: failure rate is so hight while using automatic instrumentation
[Actual result]
Expected result:
no failure rate [Expected result]
Issue Analytics
- State:
- Created a year ago
- Comments:9 (3 by maintainers)
Top Results From Across the Web
optimize your app's instrumentation and telemetry
This guide walks you through determining if you have the instrumentation and telemetry data you need for monitoring and improving your digital properties....
Read more >Instrumentation for Better Monitoring and Troubleshooting
In this Epsagon blog, we look into how instrumentation enables DevOps to achieve better monitoring and troubleshooting for faster serverless ...
Read more >Performance Monitoring: Sentry SDK API Evolution
The objective of this document is to contextualize the evolution of the Performance Monitoring features in Sentry SDKs. We start with a summary...
Read more >Diagnose exceptions in web apps with Application Insights
In this article, you'll learn how to set up exception reporting, report exceptions explicitly, diagnose failures, and more. Set up exception ...
Read more >APM correlations in Elastic Observability
The Elastic APM correlation capability automatically surfaces attributes of the APM data set that are correlated with high-latency or erroneous ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
already fixed with set
maxTransactionDuration
longer thanidleTimeout
will waiting for SDK releasehttps://github.com/getsentry/sentry-react-native/pull/2427 should fix it.