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!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...