Alerting

How can you write a query to show the "frequency" of fired alert names starting with text "FD*"over the year or months in 2018?

HenryFitzerald
New Member

Hi,

Could anyone please assist me in writing a query to check frequency of alert over a 12 month period
for all Alerts starting with FD so FD*

Example alert names is FD_GHH_LTR,FD_GHH_TCP etc.

Query => index=ALL_Alerts sourcetype=test_source host=5d5d alert=FD* | timechart count by alert

Tags (2)
0 Karma

HenryFitzerald
New Member

Thanks Yannk will give this a go.

0 Karma

yannK
Splunk Employee
Splunk Employee

you are almost good, just add a span of time

index=ALL_Alerts sourcetype=test_source host=5d5d alert=FD* 
|  timechart span=1month count by alert

if you have more than 10 types of alerts, you can add a higher limit

index=ALL_Alerts sourcetype=test_source host=5d5d alert=FD* 
|  timechart span=1month count by alert limit=30

If you do not really care about the alert name, and just want to count the total

index=ALL_Alerts sourcetype=test_source host=5d5d alert=FD* 
|  timechart span=1month count

Finally, if you want the results as a table not as a timechart, use stats

index=ALL_Alerts sourcetype=test_source host=5d5d alert=FD* 
| bucket _time  span=1month  | stats count by _time alert 
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...