Dashboards & Visualizations

Earliest is the max(timestamp) from an inputlookup

morethanyell
Builder

We have a job which routinely creates an outputlookup containing the time (timestamp) it has completed a successful summary index.

We'd like to use this information in a dashboard such that the earliest is max(timestamp)

idea:

index=some_index_summary earliest=the max(timestamp) from my inputlookup
0 Karma
1 Solution

woodcock
Esteemed Legend

Doing earliest and latest in a subsearch is tricky and requires special handling, including only using integer values and eliminating double-quotes. Try this for your subsearch; it will work unless timestamp is not a number (it must be a time_t😞

 index=some_index_summary [|inputlookup my_inputlookup | stats max(timestamp) AS earliest
 | format "" "" "" "" "" ""
 | rex field=search mode=sed "s/\"//g"]

View solution in original post

woodcock
Esteemed Legend

Doing earliest and latest in a subsearch is tricky and requires special handling, including only using integer values and eliminating double-quotes. Try this for your subsearch; it will work unless timestamp is not a number (it must be a time_t😞

 index=some_index_summary [|inputlookup my_inputlookup | stats max(timestamp) AS earliest
 | format "" "" "" "" "" ""
 | rex field=search mode=sed "s/\"//g"]

morethanyell
Builder

Thanks a lot. It works.

0 Karma

mstjohn_splunk
Splunk Employee
Splunk Employee

hi @morethanyell

Did the answer below solve your problem? If so, please resolve this post by approving it!
If your problem is still not solved, keep us updated so that someone else can help ya. Thanks for posting!

0 Karma

morethanyell
Builder

it does not work

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@morethanyell

Can you please try this?

 index=some_index_summary  [ | inputlookup mylookup | stats max(timestamp) as earliest | field earliest]
0 Karma

morethanyell
Builder

it does not work.

0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...