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!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...