Splunk Search

Finding the earliest event matching a query

flaviadonno
Explorer

Hi all,
is there a quick way to find the earliest event (given the logtype and the index) matching a query ?

Tags (2)

lguinn2
Legend

Or, if you are looking for a more generic solution:

yoursearchhere
| tail 1

Why tail and not head? Because Splunk returns the search results sorted so that the latest result comes first. So the last result will be the earliest.

Other variations are possible. For example, if I want to see the earliest time that each clientip address appeared in the results, along with the count:

yoursearchhere
| stats earliest(_time) as FirstAppearance count by clientip
| fieldformat FirstAppearance=strftime(FirstAppearance,"%x %X")

flaviadonno
Explorer

Cool! Thank you!

0 Karma

kristian_kolb
Ultra Champion

If you by 'logtype' mean sourcetype;

| metadata type=sourcetypes index=your_indexname_here | convert ctime(firstTime) | fields - lastTime, recentTime, type

and yes, the search starts with a pipe (|)

/K

Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

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

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...