-
Notifications
You must be signed in to change notification settings - Fork 524
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
[Feature]: UI configuration to display the entire trace ID #2092
Comments
Hey, @brunexgeek ! I would like to give it a try. |
Hello there! Considering the case of sequential IDs, I think that's it. I thought we could just add an option to display the entire ID, disabled by default. I'm new in Jaeger to be honest. Thanks! |
4 tasks
github-merge-queue bot
pushed a commit
that referenced
this issue
Feb 8, 2025
## Which problem is this PR solving? - Resolves: #2092 ## Description of the changes - I've added a funtion to show the full trace ID in the trace details page ## How was this change tested? - here is the screenshot of the function Full ID ![Screenshot from 2025-01-03 18-00-08](https://github.com/user-attachments/assets/f3c414d2-7706-427e-94fc-0786c42b4d3d) - after clicking the Full ID ![Screenshot from 2025-01-03 17-59-45](https://github.com/user-attachments/assets/b7a50362-faba-407b-88f9-883cf7ae9e67) ## Checklist - [x] I have read https://github.com/jaegertracing/jaeger/blob/master/CONTRIBUTING_GUIDELINES.md - [x] I have signed all commits - [x] I have added unit tests for the new functionality - [x] I have run lint and test steps successfully - for `jaeger`: `make lint test` - for `jaeger-ui`: `npm run lint` and `npm run test` --------- Signed-off-by: Avinash <[email protected]> Signed-off-by: avinash <[email protected]> Signed-off-by: Avinash Chowdhury <[email protected]> Signed-off-by: Yuri Shkuro <[email protected]> Co-authored-by: Yuri Shkuro <[email protected]>
reopening - need to mention the new option in the UI configuration docs on the website |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Requirement
As a system architect, who monitors the behavior of production environments using Jaeger, I would like to be able to view the entire trace ID in the trace search and trace details.
Problem
We generate our own IDs and the trace ID is sequential (similar to Snowflake ID). The problem is that the UI only shows the first characters of the ID, which means that IDs like
0003b24be26bc00a
and0003b24be22d400a
look the same in the listings (they both appear as0003b24
). This also happens on the trace details page. The span ID, on the other hand, is shown in its entirety.Proposal
Add an option in the UI configuration to show the entire trace ID.
Open questions
No response
The text was updated successfully, but these errors were encountered: