-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
[Logs UI] View log in context modal #62198
[Logs UI] View log in context modal #62198
Conversation
If no callbacks are passed to the `LogEntryRow` component, the actions column should not render. This will allow us to reuse the `LogEntryRow` component in the modal for View log in context.
…/kibana into 58487-view-logs-in-context-modal
The default props for `<EuiFlexGroup>` add a `flex-wrap` to the flex group that makes things break on mobile. To fix the layout on narrow screens and ensure the content doesn't wrap we need to set `responsive={false}`, ironically.
Pinging @elastic/logs-metrics-ui (Team:logs-metrics-ui) |
@elasticmachine merge upstream |
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.
This looks great! Based on conversation with @mukeshelastic, let's remove the "selected log line" at the top of the modal and this should be good to go.
Question about |
@elasticmachine merge upstream |
@elasticmachine merge upstream |
👏 |
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
Summary
Closes #58487.
Implements a feature to show a certain log line within context. We define context as either:
host.name
andlog.file.path
container.id
Final view (we removed the line at the top of the modal that repeated the "selected log" and changed the selected log highlight to yellow so it stands out, with a tooltip as well)
Checklist
For maintainers