-
Notifications
You must be signed in to change notification settings - Fork 8.6k
[Discover][Traces] Explore trace.id from logs in Discover #249632
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
Merged
tfcmarques
merged 15 commits into
elastic:main
from
tfcmarques:5115-explore-trace-id-from-logs-in-Discover
Jan 30, 2026
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
0d970c6
remove trace id from summary table + add open in discover to traces s…
tfcmarques a2301e9
revert summary table trace id removal + remove only hyperlink + updat…
tfcmarques fd594ec
Merge branch 'main' into 5115-explore-trace-id-from-logs-in-Discover
tfcmarques 5a6cc78
revert highlight removal + minor type change
tfcmarques 73edc63
reuse open in discover label + typo fix
tfcmarques 536a51a
fix translation files
tfcmarques 6590085
fix trace waterfall test mocks
tfcmarques 6846f01
revert target prop from action
tfcmarques 0140d0c
Merge branch 'main' into 5115-explore-trace-id-from-logs-in-Discover
tfcmarques c226608
switch traces section action buttons order
tfcmarques 8260c00
Merge remote-tracking branch 'upstream/main' into 5115-explore-trace-…
tfcmarques 9444701
Merge branch 'main' into 5115-explore-trace-id-from-logs-in-Discover
tfcmarques 47df69f
Merge remote-tracking branch 'upstream/main' into 5115-explore-trace-…
tfcmarques 67c7282
Merge remote-tracking branch 'upstream/main' into 5115-explore-trace-…
tfcmarques 21fa102
Merge remote-tracking branch 'upstream/main' into 5115-explore-trace-…
tfcmarques File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,8 +16,8 @@ export const OPEN_IN_DISCOVER_LABEL = i18n.translate( | |
| } | ||
| ); | ||
|
|
||
| export const OPEN_IN_DISCOVER_LABEL_ARIAL_LABEL = i18n.translate( | ||
| 'unifiedDocViewer.observability.traces.openInDiscoverArialLabel', | ||
| export const OPEN_IN_DISCOVER_ARIA_LABEL = i18n.translate( | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixing typo |
||
| 'unifiedDocViewer.observability.traces.openInDiscoverAriaLabel', | ||
| { defaultMessage: 'Open in discover link' } | ||
| ); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,7 +35,6 @@ import { ServiceNameLink } from '../service_name_link'; | |
| import { TransactionNameLink } from '../transaction_name_link'; | ||
| import { HighlightField } from '../highlight_field'; | ||
| import { DependencyNameLink } from '../dependency_name_link'; | ||
| import { TraceIdLink } from '../trace_id_link'; | ||
| import { fieldDescriptions, fieldLabels } from '../../../constants'; | ||
|
|
||
| export const getSharedFieldConfigurations = ( | ||
|
|
@@ -73,15 +72,7 @@ export const getSharedFieldConfigurations = ( | |
| [TRACE_ID]: { | ||
| title: fieldLabels.TRACE_ID_LABEL, | ||
| formatter: (value: unknown, formattedValue: string) => ( | ||
| <HighlightField value={value as string} formattedValue={formattedValue}> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. |
||
| {({ content }) => ( | ||
| <TraceIdLink | ||
| traceId={value as string} | ||
| formattedTraceId={content} | ||
| data-test-subj="unifiedDocViewerObservabilityTracesTraceIdLink" | ||
| /> | ||
| )} | ||
| </HighlightField> | ||
| <HighlightField value={value as string} formattedValue={formattedValue} /> | ||
| ), | ||
| }, | ||
| }; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I think we want to keep the highlighting and only remove the link?
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.
Ah that's true, I'll quickly revert that, thanks 👍🏻
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.
Done! Friendly reminder that it doesn't change the demo, because we're using ESQL there 🙇🏻