Greetings, I have been creating a search that collects all the sourcetypes that have not collected any information during the last 4 hours (Which I was able to accomplish). The thing is that I need to know which indexes these sourcetypes belong to in this same search. Any idea? This is the search: | metadata type=sourcetypes index=* | search sourcetype=* | where lastTime<now()-14400 | eval ageInSeconds = (now()- firstTime) | search ageInSeconds > 86400 | convert ctime(lastTime) ctime(recentTime) ctime(firstTime) | table sourcetype, lastTime
... View more