-
-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
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
Segregation of native and JS breadcrumbs #994
Comments
@awinograd When you mentioned
does this mean one or the other is incorrectly timestamped? This is an issue with some events that we've noticed from the past week or so where they are incorrectly timestamped. This could be a side effect of that. |
Yep that's exactly what I mean. Sorry if I missed a previous related issue!
…On Mon, Jul 27, 2020, 3:45 AM Jenn Mueng ***@***.***> wrote:
@awinograd <https://github.com/awinograd> When you mentioned
offset by a few hours
does this mean one or the other is incorrectly timestamped? This is an
issue with some events that we've noticed from the past week or so where
they are incorrectly timestamped. This could be a side effect of that.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#994 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACKD6LSI4UIR3CEDZHVO23R5U5BTANCNFSM4PIBVNJQ>
.
|
I am also seeing weird segregation of breadcrumbs. In my case, the timestamps on each breadcrumb do appear to be correct, but in the Sentry web UI, the breadcrumbs are not all listed in sorted time order. Here is an example issue showing this problem: https://sentry.io/share/issue/f1a08e268b30480781221e669c776874/ (note: the breadcrumbs will probably only be visible to Sentry staff, via the "Details" view). The linked issue is from my React Native app running in production on Android, using In the Sentry web UI, after clicking "Show 191 collapsed crumbs" to show all breadcrumbs, I see the following sequence of timestamps:
There are two distinct "runs" of breadcrumbs. Each "run" appears to be in sorted order. It looks to me like the first "run" includes only JavaScript breadcrumbs, while the second "run" includes a duplicate copy of all the JavaScript breadcrumbs, plus the Java breadcrumbs. |
Any updates on this? |
This has now been fixed in the latest release. https://github.com/getsentry/sentry-react-native/releases/tag/1.8.1 |
OS:
Platform:
SDK:
@sentry/react-native
(>= 1.0.0)react-native-sentry
(<= 0.43.2)SDK version: 1.4.2
react-native
version: 0.63.1Are you using Expo?
Are you using sentry.io or on-premise?
If you are using sentry.io, please post a link to your issue so we can take a look:
https://sentry.io/organizations/oui/issues/1806688837/?project=1512711&referrer=slack
Configuration:
(
@sentry/react-native
)I have following issue:
When a sentry message / error is recorded, the associated breadcrumbs don't appear in a linear timeline as expected. Rather, the JS breadcrumbs all happen linearly, and the native breadcrumbs happen linearly, offset by a few hours. As a result, in the sentry UI, the JS breadcrumbs and native breadcrumbs are not interleaved.
Steps to reproduce:
Actual result:
JS breadcrumb 1
JS breadcrumb 2
JS breadcrumb 3
Native breadcrumb 1
Native breadcrumb 2
Native breadcrumb 3
Expected result:
JS breadcrumb 1
Native breadcrumb 1
JS breadcrumb 2
Native breadcrumb 2
JS breadcrumb 3
Native breadcrumb 3
The text was updated successfully, but these errors were encountered: