Splunk Search

How to edit my search to show only the last field value from a field for each IP?

kiran331
Builder

Hello

From the search, I get the IP's and its last scan information with LAST_SCAN_DATETIME. I need to get the information based on the last scan date.

From the actual index:

index=qualys | search IP=10.2.2.3

Output fields :

LAST_SCAN_DATETIME
2016-11-04T08:16:32Z  (count 55)
2016-10-03T08:16:32Z  (count 22)

How can I change the search to show only one last field value for LAST_SCAN_DATETIME for each IP?

Search I'm using:

index=qualys|head 1 LAST_SCAN_DATETIME|table IP .....
Tags (1)
0 Karma

goodsellt
Contributor

Either of the two should do the trick I'd think:

index=qualys | top limit=1 LAST_SCAN_DATETIME by IP

OR

index=qualys | stats latest(LAST_SCAN_DATETIME) by IP

0 Karma

kiran331
Builder

When I did the search

index=qualys| | stats latest(LAST_SCAN_DATETIME) as Last_scan by IP,QID, HOST_ID, DNS, OS,STATUS

its showing all results, I need the results for only one LAST_SCAN_DATETIME.

0 Karma

DarthDMader
Explorer

When it show "all" results it seams you have in one or more 'by' fields differences.
Put everything expect IP in latest() in front of the 'by' and this should be what you are searching for.

0 Karma

kiran331
Builder

Is there a way to limit only one field value in a field LAST_SCAN_DATETIME?

0 Karma
Get Updates on the Splunk Community!

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...

Your Voice Matters! Help Us Shape the New Splunk Lantern Experience

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

September Community Champions: A Shoutout to Our Contributors!

As we close the books on another fantastic month, we want to take a moment to celebrate the people who are the ...