Splunk Search

Why is my search returning error?

parkz
Explorer

I'm trying to run the following commands on an index:

 

| eval elast=strptime(lastSeen,"%Y-%m-%d %H:%M:%S")
| eval daysSinceLastSeen = round((now() - elast)/86400, 1) ```Calculate days elapsed since lastSeen```
| eval active_status = if ((latest (daysSinceLastSeen) <= 28), "active", "inactive")

 

There is an error that keeps popping up stating 'latest' function is unsupported or undefined.

How do I correct that?

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

The latest function can be used with the chart, mstats, stats, timechart, and tstats commands, but not with eval.

latest doesn't make sense in this context since any given event will have a single daysSinceLastSeen field so it must be the latest one.  Finding the latest value of a field across all events requires an aggregating command like stats.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

The latest function can be used with the chart, mstats, stats, timechart, and tstats commands, but not with eval.

latest doesn't make sense in this context since any given event will have a single daysSinceLastSeen field so it must be the latest one.  Finding the latest value of a field across all events requires an aggregating command like stats.

---
If this reply helps you, Karma would be appreciated.
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!

ATTENTION: We’re Moving! (AGAIN!)

The Splunk Community Slack is undergoing a system migration to keep our workspace secure and ...

Deep Dive: Optimizing Telemetry Pipelines in Splunk Observability Cloud

In this session, we will peel back the layers of Splunk Observability Cloud’s cost-optimization features. ...

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...