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
Path Finder

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!

Celebrating Fast Lane: 2025 Authorized Learning Partner of the Year

At .conf25, Splunk proudly recognized Fast Lane as the 2025 Authorized Learning Partner of the Year. This ...

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...