-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem?
When analyzing logs, viewing a single log line in isolation often doesn't provide enough context to understand the surrounding events. Manually searching or scrolling for logs immediately before and after a specific event of interest is inefficient and can make debugging difficult.
Describe the solution you'd like
Implement a feature that allows users to easily view contextual logs surrounding a selected log entry. When a user selects or focuses on a particular log line:
- The system should automatically fetch and display a configurable number (e.g., N=10) of log entries that occurred immediately before the selected entry based on timestamp.
- The system should also fetch and display a configurable number (e.g., M=10) of log entries that occurred immediately after the selected entry based on timestamp.
- These "before" and "after" contextual logs should be clearly presented alongside the selected log entry, perhaps visually distinct (e.g., grouped, different background shade).
- Ideally, the number of context lines (N and M) should be configurable by the user.
Describe alternatives you've considered
- Manual Scrolling/Searching: Users manually navigate the log stream to find surrounding events.
- Time-Range Filtering: Users apply precise time range filters around the event timestamp, which can be cumbersome.
Additional context
This feature aims to significantly speed up log analysis and troubleshooting by providing immediate, relevant context around log events, reducing the need for manual searching and improving the user's ability to understand event sequences
Importance
Nice to have
Contribution
I could help with parts of it
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Projects
Status
Todo