Alerting

How to alert when http status=404 is over 5 percent of total traffic?

gingersoftware
New Member

Hi,

How to alert when http status=404 is over 5 percent of total traffic ?

This is the simple search query I use. Need your help to add the correct condition for the alert.

tag=NginxLogs  host=www* status=404

Thanks for your help.

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

Try this

tag=NginxLogs host=www* |stats count by status|eventstats sum(count) as total|eval perc=round((count/total)*100,2)|where status="404" AND perc>5
---
What goes around comes around. If it helps, hit it with Karma 🙂

View solution in original post

0 Karma

ralam
Loves-to-Learn

you can also achieve it using below query:

tag=NginxLogs host=www* status=404

| stats count by status
| eval total=[search tag=NginxLogs host=www* | stats count(src) as total | eval total="\"".total."\""| return $total]
| eval percent=round((count/total)*100,2)
| where percent>5

In my environment, this query ran faster.

you can be more efficient if you mention index=xyz in your query. (in our case we did)

0 Karma

gingersoftware
New Member

Thank You!

Can you explain where do I add it in order for that to be an Alert?

0 Karma

renjith_nair
Legend

Try this

tag=NginxLogs host=www* |stats count by status|eventstats sum(count) as total|eval perc=round((count/total)*100,2)|where status="404" AND perc>5
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma

gingersoftware
New Member

Thank you very much

0 Karma

gingersoftware
New Member

Can you explain where do I add it in order for that to be an Alert?

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 ...