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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...