Splunk Search

How to get most recent results based on field value?

vikram1583
Explorer

Hi,

I'm trying to get the results based on recent field value. How to filter the events with the most recent scan date for all ip's?

scan_date field values
03-01
02-22

Tags (3)
0 Karma

manjunathmeti
Champion

Use stats command.

your search | stats max(scan_date) as scan_date by field

Sample query:

| makeresults | eval _raw="scan_date IP 
03-01 10.0.0.1
02-22 10.0.0.1
03-04 10.1.1.1
02-20 10.1.1.1" | multikv forceheader=1 | table scan_date, IP | stats max(scan_date) as scan_date by IP
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 ...