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?

Labels (1)
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.
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...