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.

Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

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 ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...