Splunk Search

Unusually high volume detection with respect to the same day of the previous week per server

christianubeda
Path Finder

It would be possible to detect an increase in volume per server.

This is my current search that looks global but would need one per server without having to create 100 search one by src_Ip = ...

index=cisco_asa sourcetype="cisco:asa" Cisco_ASA_action=allowed  earliest=-1w
 | timechart count span=1d perc95(avg) 
 | where strftime(_time, "%A") == strftime(now(),"%A") 
 | timewrap w 
 | rename "* ago" as * | eval avg=Total/3.0 | rename latest_week as Today 1week_before as Lastday _time as Date | eval ChangePercent = (Today - Lastday) / 100 | convert timeformat="%m/%d/%Y %H:%M:%S" ctime(Date)  | where ChangePercent > 0.20

Thank you!

Tags (1)
0 Karma

koshyk
Super Champion

Is this same question as https://answers.splunk.com/answers/748738/cisco-asa-volume-detection-today-against-same-day.html ?
If not, you could do it very similar to the above question

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...