Alerting

I want to get alert if the number goes behind the threshold

chandukreddi
Path Finder

I would like to get alert if it exceeds threshold

eg:

Datafsused >=50

Log print:

Mar 26 16:12:05 127.0.0.1 fs_used_percentage_stats: Datafsused=43 Commitlogfsused=21 Backupfsused=81

Tags (2)
0 Karma
1 Solution

manjunathmeti
Champion

Check if Datafsused field is extracted in the index. If yes, then you can directly filter events in your search like this:

index=<index_name> Datafsused >= 50

If not use rex command to extract Datafsused values and then use where command:

index=<index_name> | rex "Datafsused=(?<Datafsused>\d+)" | where Datafsused >= 50

Then save this as an alert and add alert action settings: Add to Triggered Alerts.

View solution in original post

0 Karma

chandukreddi
Path Finder

Thanks for your quick help!

0 Karma

manjunathmeti
Champion

Check if Datafsused field is extracted in the index. If yes, then you can directly filter events in your search like this:

index=<index_name> Datafsused >= 50

If not use rex command to extract Datafsused values and then use where command:

index=<index_name> | rex "Datafsused=(?<Datafsused>\d+)" | where Datafsused >= 50

Then save this as an alert and add alert action settings: Add to Triggered Alerts.

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