Splunk Search

How to generate an alert when a sourcetype stops sending logs?

nicholas_bergma
New Member

I've found quite a few articles on how to alert on a specific source/sourcetype, but I want to alert of any sourcetype that hasn't had any log data for over 24 hours. Is there a way to create an alert for when the sourcetype reaches that 24 hour threshold? Here's the search I'm running currently with the timepicker set to Relative:24 hrs

| metadata type=sourcetypes index=*
| convert ctime(lastTime) as Last_Time timeformat="%Y/%m/%d %H:%M"
| search sourcetype!=*too_small 
| where lastTime < (now() - 86400) 
| fields sourcetype Last_Time
| sort -Last_Time
0 Karma

somesoni2
Revered Legend

Try like this (Time Range Picker should be more than 24Hrs so that you include the last event from that sourcetype and compare against your criteria). Just changed to order of statements as well.

| metadata type=sourcetypes index=*
| search sourcetype!=*too_small 
| where lastTime < (now() - 86400) 
| convert ctime(lastTime) as Last_Time timeformat="%Y/%m/%d %H:%M"
| fields sourcetype Last_Time
| sort -Last_Time
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...