Dashboards & Visualizations

Do dashboards in Splunk 5.0 support dynamic date/time inputs?

KShen
New Member

I want to know: Can this be supported on splunk 5.0?

To have a dynamic input date, you can create an dashboard and add a time input, add a panel and enter your search without puting in your search earliest= latest= . Your dashboard xml code will display as follows:

   <label>Form with time picker</label>
   <description></description>
   <fieldset submitButton="false">


     <input type="time" searchWhenChanged="true" token="global_time_input_tok">
         <label>Select time range</label>
         <default>
           <earliest>-24h@h</earliest>
           <latest>now</latest>
         </default>
       </input>
   </fieldset>
   <row>
     <panel>
       <title>Global timer</title>
       <chart>
         <search>
           <query> Write your search </query>
           <earliest>$global_time_input_tok.earliest$</earliest>
           <latest>$global_time_input_tok.latest$</latest>
         </search>
       </chart>
     </panel>


   </row>
  </form>
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

First off, do update to 6.2.x, it's really neat.

While still stuck on 5.0, take a look at this: http://docs.splunk.com/Documentation/Splunk/5.0/Viz/Buildandeditforms
The example on that page includes a time range picker in 5.0-compatible syntax.

0 Karma

KShen
New Member

How to add date time range to the dashboard to the Splunk 5.0

0 Karma

NOUMSSI
Builder

Hi,
It can't work like that, you most make some changes in your source code:

<query> ... </query> is not supported in splunk 5.0

For it to work do like this:
Changes this:

<search>
            <query> Write your search </query>
            <earliest>$global_time_input_tok.earliest$</earliest>
            <latest>$global_time_input_tok.latest$</latest>
</search>

By this:

            <searchString> Write your search </searchString>
            <earliestTime>$global_time_input_tok.earliest$</earliestTime>
            <latestTime>$global_time_input_tok.latest$</latestTime>
0 Karma
Get Updates on the Splunk Community!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...