Splunk Dev

How to list the latest time logs for the hosts grouped by source?

abhi04
Communicator

How to list the latest time loalt textgs for the hosts grouped by source?
Please see the attached image for reference for example.

Tags (1)
0 Karma

mayurr98
Super Champion

I think you are looking for something like this :

index=<your_index> 
| stats latest(_time) as latest by source host 
| eval "Latest Log Time"=strftime(latest,"%I:%M:%S %p") 
| fields- latest

Above will be much slower query so you can also use the query given by @FrankVl for faster approach.
In addition to that

| tstats latest(_time) as latest where index=<your_index> by source,host 
| eval "Latest Log Time"=strftime(latest,"%I:%M:%S %p") 
| fields- latest

You need to put <your_index> as your index name.
let me know if this helps!

0 Karma

FrankVl
Ultra Champion
| tstats latest(_time) as latest where index=* by source,host | convert ctime(latest)

Replace index=* by whatever you fancy 🙂

Get Updates on the Splunk Community!

.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 ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...