-
Notifications
You must be signed in to change notification settings - Fork 452
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
Add breadcrumb ordering #8034
Add breadcrumb ordering #8034
Conversation
75f6da1
to
2f0ca7a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately, it does not work: https://sentry.tribler.org/organizations/tribler/issues/2658/events/e962cfb599ab49ddbf9f874d1720642d/
You can see that breadcrumbs still come in two independently sorted groups.
(As a side note, I noticed that the user comment is currently omitted from the Sentry report, even when included. It is not related to the current PR, I will investigate it)
You are right. It is strange. I'll investigate further. |
3e11817
to
957b329
Compare
@kozlovsky I think I've fixed it by 957b329 https://sentry.tribler.org/organizations/tribler/issues/2658 |
Nope, it is still two separate lists: https://sentry.tribler.org/organizations/tribler/issues/2658/events/0a59f86f4eeb4c908fd860e2da8343c0/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems it is fixed now!
959c520
to
562d45c
Compare
562d45c
to
76e4c64
Compare
We have noticed that breadcrumbs are not always sorted by timestamp:
This PR fixes it by Introducing a new feature to order breadcrumbs by timestamp in ascending order. This is achieved by adding a new function,
order_by_utc_time
, which sorts the breadcrumbs based on their timestamps.Ref: