Splunk Search

get latest value and timestamp

a212830
Champion

Hi,

How would I go about getting the latest value of a search, along with the timestamp of that search? I want to include it in a table.

Tags (2)

stoomart
Explorer

I've found the stat functions 'earliest' and 'latest' work best for time-dependent field reporting:

... | stats latest(_time) as _time, latest(X)

a212830
Champion

Sorry that I wasn't more specific. I want to grab data from the previous hour, and I want to get the value of the last event, along with the timestamp associated with that last event. I'll try these, but I'm don't think they are what I'm looking for...

0 Karma

Paolo_Prigione
Builder

I think you are looking for:

| head 1
| addinfo

The time the search was executed will be in the info_search_time field

sbrant_splunk
Splunk Employee
Splunk Employee

You can also get the most recent value of a particular field using the "first" function in stats:

... | stats first(X)

martin_mueller
SplunkTrust
SplunkTrust

This would get you the latest result:

... | head 1

Not sure if that's what you want, hard to guess from the question.

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...