Alerting

Alert for a Specific host Shutdown more then 5 min, Splunk send out an alert

shakeel253
Explorer

Does anyone knows of a specific query that can used as an alert, if the host shutdown for more then 5 min, it triggers an alert and identifies user

0 Karma

saurabhtcs
New Member

Hi

You can try the below search to get alert in case any host is down for more than 5 minutes:

| tstats count latest(_time) where index=* by host
| rename earliest(_time) as earliest_time, latest(_time) as latest_time
| eval status= if(latest_time > relative_time(now(),"-5min"),"Active","Inactive")
| convert ctime(latest_time)
| search status="Inactive"
| fields - count

0 Karma

shakeel253
Explorer

i want to set this query for a specific host such as host=tableau, what should i change with in the query

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Add host=yourhost OR host=yourhost1 OR host=yourhost2... just after the index=* and before by host in line1.

0 Karma

shakeel253
Explorer

thankyou Somesoni, that was helpful, appreciate you and saurabhtcs help 🙂

0 Karma

somesoni2
SplunkTrust
SplunkTrust

Glad we were able to you help you with your requirement. If there are not follow-up questions in same topic, do remember to close the question by accepting the answer (and upvoting it).

0 Karma

shakeel253
Explorer

@somesoni2 @saurabhtcs when i used the query, if i shutdown the host, nothing comes up when i ran the query. It only shows result for last 24hrs. I started/stopped the host and ran this query but it didnt give desired result. The desire result which i want is, if the host is shutdown, the query has been setup as alert and should be able to inform user that host is shutdown or not responding with the updated timestamp

| tstats count latest(_time) where index=* host="abssvm" by host | rename earliest(_time) as earliest_time, latest(_time) as latest_time | eval status= if(latest_time > relative_time(now(),"-5min"),"Active","Inactive") | convert ctime(latest_time) | search status="Inactive" | fields - count

0 Karma

saurabhtcs
New Member

You should get an alert after 5 minutes. Since the threshold given in the search is 5mins, you will get an alert on after five minutes of the host being down (and the alert runs at that time).

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...