- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sven1
Path Finder
02-09-2023
04:35 AM
Thanks in advance for any assistance you can please lend.
Can someone please tell me how I can configure an Enterprise Security correlation search that triggers only when a specific action is repeated by the same user 20 times in 5 minutes?
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
02-10-2023
12:30 PM
Bin the events into 5-minute intervals and count the number of events for each user in each bucket. Keep only the results where the count is at least 20. Trigger the CS when the number of results is not zero.
<<your search for action X>>
| bin span=5m _time
| stats count by _time,user
| where count >= 20
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

richgalloway

SplunkTrust
02-10-2023
12:30 PM
Bin the events into 5-minute intervals and count the number of events for each user in each bucket. Keep only the results where the count is at least 20. Trigger the CS when the number of results is not zero.
<<your search for action X>>
| bin span=5m _time
| stats count by _time,user
| where count >= 20
---
If this reply helps you, Karma would be appreciated.
If this reply helps you, Karma would be appreciated.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Sven1
Path Finder
02-10-2023
01:30 PM
richgalloway,
Thank you very much.
