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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...