Splunk Search

How to work on the latest event only?

zacksoft
Contributor

I have my query ready which essentially extracts some fields and displays in a table.
But I want to work on the latest event only.
How do I put condition so that my query only works on the latest one event?

Tags (1)
0 Karma
1 Solution

493669
Super Champion

try head command:
Returns the first N number of specified results in search order

... | head 1

View solution in original post

0 Karma

harishalipaka
Motivator
|sort _time |head 1
Thanks
Harish

zacksoft
Contributor

Is |sort _time necessary ?
Won't |head 1 alone will do the job?
Just confirming.

0 Karma

harishalipaka
Motivator

If it is realtime data it will come updated with head 1 ..or it is saved data it will directly give top of the value head 1 in this situation you have to sort _time than you will get top value as updated.

Thanks
Harish
0 Karma

493669
Super Champion

even if there are duplicates, using head 1 it will took latest one

0 Karma

harishalipaka
Motivator

below example explain how it is works .

| makeresults 
| eval A=45 
| eval DateHour="2018-06-06 18:47:22.820" 
| append 
    [| makeresults 
| eval A=30 
| eval DateHour="2018-06-06 18:45:22.820" ] 
| append 
    [| makeresults 
| eval A=50 
| eval DateHour="2018-06-06 18:57:22.000" ]  
| fields - _time
| head 1
Thanks
Harish
0 Karma

493669
Super Champion

try head command:
Returns the first N number of specified results in search order

... | head 1
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...