-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Adding "Replay Search" bulk action for alerts/events. #21262
Conversation
ff51066
to
84278fe
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.
It would be nice to use the check mark only if an event is already investigated. I was a bit confused that none-investigated event has a darker color than investigated. We can use just a simple check box or some other icon for non investigated event
`); | ||
|
||
const CompletedButton = styled(IconButton)<{ $done: boolean }>(({ theme, $done }) => css` | ||
color: ${$done ? theme.colors.variant.success : theme.colors.global.textDefault}; |
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.
color: ${$done ? theme.colors.variant.success : theme.colors.global.textDefault}; | |
color: ${$done ? theme.colors.variant.success : theme.colors.gray[60]}; |
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.
That would make icon in the same color as trash icon
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.
✅
Description
Motivation and Context
This PR is adding a bulk action that allows replaying searches for multiple alerts/events. This is targeted at analysts wanting to investigate multiple events closely, filtering out non-relevant events and performing actions on the ones remaining. To support this, this feature is building a stack of events, showing the on the left side of the screen, allowing the user to replay them one by one.
The user can now mark individual events as viewed, jumping to the next one which was not viewed yet. The user can also remove events which have turned out to be irrelevant. This allows the user to keep track of the progress and make sure that no event is missed. At the end, the user can perform further bulk actions on the events remaining in the stack.
How Has This Been Tested?
Screenshots (if appropriate):
Types of changes
Checklist: