Splunk Search

How do I schedule a recurring search that would alert if an index is missing data feeds from hosts?

jasonlow
Loves-to-Learn

Hi.

I need to schedule a recurring search that would alert/email me if an index, say "web", is missing data feeds from any of the expected hosts, say web1, web2 and web3, in the past hour. What would this search term be?

In other words, combine three separate scheduled searches into one:

index=web host=web 1 | head 1
index=web host=web 2 | head 1
index=web host=web 3 | head 1
0 Karma

woodcock
Esteemed Legend

Did any answer work? Come back and update your question!

0 Karma

twinspop
Influencer

Run this over the last 2 hours (every hour):

| tstats latest(_time) as time where index=web by host
   | eval age=now()-time 
   | where age>3600

if you need standard search features, you can do that too:

index=web some search stuff
   | stats latest(_time) as time by host
   | eval age=now()-time 
   | where age>3600

EDIT: In either case, note that _time is the time presented in the event. You may want to use _indextime instead, which is the time Splunk ingested the event.

0 Karma

woodcock
Esteemed Legend

Like this:

|tstats values(host) AS host dc(host) WHERE (index="web" OR index="other") AS hostCount BY index
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...

Design, Compete, Win: Submit Your Best Splunk Dashboards for a .conf26 Pass

Hello Splunkers,  We’re excited to kick off a Splunk Dashboard contest! We know that dashboards are a primary ...

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...