Alerting

Alert on file age

diegosainz
Path Finder

I would like to know if it is possible to be alerted if a file is older then a specific time frame. We have files that are written down every 5 minutes. I would like to be alerted if the age of the file is in excess of 7 minutes.

Any input would be appreciated.

0 Karma

somesoni2
Revered Legend

Try following:

|metadata type=sources index=* | eval age=now()-recentTime | where age>420

This lists all the sources (files indexed in Splunk) which were last accessed 420 sec (7 min) ago. You can setup alert when this search returns rows.

0 Karma

aholzer
Motivator

You probably want something that checks _time vs _indexedtime.

... | eval diff = _indexedtime - _time | where diff > 5*60*1000

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...