Splunk Search

How to filter on DC after applying stats?

jwalzerpitt
Influencer

I have the following search in which I am looking for a list of each source IP, the list of websites they hit, the count of GETs per website, and then an overall total of GETs for all websites

index=foo http_method=GET
| bucket _time span=5m
| stats count by src, website
| sort -count 
| where count >= 5
| stats list(website) as Website, list(count) as count, sum(count) as Total by src 
| sort -Total

How can I modify the search to query for only IPs that have hit more than 5 websites within the 5-minute time span?

Thx

0 Karma
1 Solution

somesoni2
Revered Legend

Give this a try

index=foo http_method=GET
| bucket _time span=5m
| stats count by src, website
| sort -count 
| where count >= 5 | evenstats dc(website) as sites by src | where sites>=5
| stats list(website) as Website, list(count) as count, sum(count) as Total by src 
| sort -Total

View solution in original post

somesoni2
Revered Legend

Give this a try

index=foo http_method=GET
| bucket _time span=5m
| stats count by src, website
| sort -count 
| where count >= 5 | evenstats dc(website) as sites by src | where sites>=5
| stats list(website) as Website, list(count) as count, sum(count) as Total by src 
| sort -Total

jwalzerpitt
Influencer

Aweomse - worked perfectly!

Thx

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...