Dashboards & Visualizations

How to get spl to look for the latest timestamp for all the sourcetypes?

Deepz2612
Explorer

Hi,

i have a set of sourcetypes in a lookup.

Now my spl has to look for the latest timestamp for all the sourcetypes in the last one hour and report for the sourcetype for which the events are not available in the last one hour

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| metadata type=sourcetypes
| where lastTime < relative_time(now(),"-1h")
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Deepz2612,

if you haven't to check if there are events with sourcetypes not in the lookup, you could run something like this:

index=* [ | inputlookup your_lookup | fields sourcetype ]
| stats count BY sourcetype
| append [ | inputlookup your_lookup | eval count=0 | fields sourcetype count ] 
| stats sum(count) AS total BY sourcetype
| where total=0

You could also use tstats to have a more performant search:

| tstats count WHERE index=* BY sourcetype
| search [ | inputlookup your_lookup | fields sourcetype ]
| append [ | inputlookup your_lookup | eval count=0 | fields sourcetype count ] 
| stats sum(count) AS total BY sourcetype
| where total=0

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...