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!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...