From a splunk search, i get results of the log files that aren't updated for the past 15 minutes. I created this using setdiff command. Now i want to show the last updated time of those log files beside their log path names.
| set diff [ search index=* host= * |dedup source host| table source host | search source= "*log"] [|inputlookup xyz.csv | dedup source host | table source host] | dedup source host
xyz.csv is the file with all logs.
this search shows us the results of those log path files that arent updated in the past 15 minutes if search time is fixed for 15 min.
... View more