Splunk Search

How to detect when a server has stopped indexing logs in Splunk?

pandeyashish
New Member

I need to know what server(s) has stopped ingesting logs OR for which server the logs are not ingesting into Splunk.

Thanks,

0 Karma
1 Solution

somesoni2
Revered Legend

Try this assuming that if no data is coming to splunk in 24 hrs(86400 sec) is your threshold.

| metadata type=hosts index=* | eval age=now()-recentTime | where age>86400

View solution in original post

0 Karma

skoelpin
SplunkTrust
SplunkTrust

What version of Splunk are you running? If it's version 6.3 you could use the DMC, if your a version lower than 6.3 then you could use this search and set up an alert

     index=_internal sourcetype=splunkd destPort!="-"
     | stats sparkline count by hostname, sourceHost, host, destPort, version 
     | rename destPort as "Destination Port" 
     | rename host as "Indexer" 
     | rename sourceHost as "Forwarder IP" 
     | rename version as "Splunk Forwarder Version" 
     | rename hostname as "Forwarder Host Name" 
     | rename sparkline as "Traffic Frequency" 
     | sort - count
0 Karma

somesoni2
Revered Legend

Try this assuming that if no data is coming to splunk in 24 hrs(86400 sec) is your threshold.

| metadata type=hosts index=* | eval age=now()-recentTime | where age>86400
0 Karma
Get Updates on the Splunk Community!

Observability Unlocked: Kubernetes Monitoring with Splunk Observability Cloud

 Ready to master Kubernetes and cloud monitoring like the pros? Join Splunk’s Growth Engineering team for an ...

Update Your SOAR Apps for Python 3.13: What Community Developers Need to Know

To Community SOAR App Developers - we're reaching out with an important update regarding Python 3.9's ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...