Splunk Search

How to search for users that accessed the same system more than 5 times in 10 minutes and alert on this?

qiaojing
Path Finder

Hi,

I'm trying to search for users that access the SAME system more than 5 times in 10 minutes, in order to identify any abused usage of the system. I'm hoping to create an alert for such an event.

Currently, I've come up with this:

...| stats dc(System_ID) count by userID | where count>5

But I'm not sure if it's correct and how to search within the 10 minute time frame. Please help me out. I'm quite new to Splunk Enterprise.

Thank you very much! 🙂

0 Karma

sundareshr
Legend

Try this

.... | bin span=10m _time as time | stats dc(userID) as NoAttempts by time System_ID | where NoAttempts>=5

qiaojing
Path Finder

Hi this is my latest code where the threshold is the 95th percentile.

eventtype="centralizedlog"(hasAccess=Y) | bin span=20m _time | stats dc(System_ID) count by userID, _time| eventstats perc95(count) as adnorm | where count>adnorm | rename count as "Num of Log Events"| fields - adnorm - dc(System_ID)

Anyone knows how I can scheduled an alert that alerts me each time such event occurs? Thank you.

0 Karma

sundareshr
Legend

If your search is working, here's the documentation for creating an alert

http://docs.splunk.com/Documentation/Splunk/6.4.1/Alert/Definescheduledalerts

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...