Getting Data In

Stop sending

aalhabbash1
Path Finder

Hi Splunker;

How to detected a index stop receiving logs from any technology last 2 hours, I need for indexes not sourcetype?

Appreciate your support.

Best Regards;

Tags (1)
0 Karma
1 Solution

koshyk
Super Champion

the best way is to see when the last time you got the data into the index and see if that time is > 2 hours

|tstats latest(_time) as latest_event WHERE (index=* OR index=_*) by index
|eval timeDiff=now() - latest_event
| where timeDiff > 7200

it should show any index which has not recieved data in last 7200 secs (i.e 2hrs)

View solution in original post

koshyk
Super Champion

the best way is to see when the last time you got the data into the index and see if that time is > 2 hours

|tstats latest(_time) as latest_event WHERE (index=* OR index=_*) by index
|eval timeDiff=now() - latest_event
| where timeDiff > 7200

it should show any index which has not recieved data in last 7200 secs (i.e 2hrs)

aalhabbash1
Path Finder

Mr.Koshyk

Done; many thank you, this is which I want, appreciate that

Best Regards;

0 Karma
Get Updates on the Splunk Community!

Splunk Platform | Upgrading your Splunk Deployment to Python 3.9

Splunk initially announced the removal of Python 2 during the release of Splunk Enterprise 8.0.0, aiming to ...

From Product Design to User Insights: Boosting App Developer Identity on Splunkbase

co-authored by Yiyun Zhu & Dan Hosaka Engaging with the Community at .conf24 At .conf24, we revitalized the ...

Detect and Resolve Issues in a Kubernetes Environment

We’ve gone through common problems one can encounter in a Kubernetes environment, their impacts, and the ...