Getting Data In

Time modifiers for splunk dashboard - using base search

Poojitha
Path Finder

Hi All,

I am using base search , I want to use time picker(earliest and latest) in other panel which is using this base search.

How can I achieve that ?

Reference query :

 

 

<form version="1.1" theme="dark">
  <label>Test Dashboard</label>
  <description>Dashboard created for testing purpose</description>
  <search id="base_12">
    <query>
      index=test_index
    </query>
    <earliest>0</earliest>
    <latest></latest>
  </search>
  <fieldset submitButton="true" autoRun="true">
    <input type="time" token="time">
      <label>Time Picker</label>
      <default>
        <earliest>-7d@w0</earliest>
        <latest>@w0</latest>
      </default>
    </input>
<search base="base_12">
        <query>| search (($app$) AND ($environment$))| stats count by test
| fields test</query>
      </search>

 

 


Regards,
NVP

Labels (1)
Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @Poojitha,

you code is incomplete but it isn't a problem.

You have to add the time token in the base search, I usually create a complete search in a panel (also with time token) and then I move all the search in the base search so I already have the time token configure, anyway, please try this:

<form version="1.1" theme="dark">
  <label>Test Dashboard</label>
  <description>Dashboard created for testing purpose</description>
  <search id="base_12">
    <query>
      index=test_index
    </query>
    <earliest>$time.earliest$</earliest>
    <latest>$time.latest$</latest>
  </search>
  <fieldset submitButton="true" autoRun="true">
    <input type="time" token="time">
      <label>Time Picker</label>
      <default>
        <earliest>-7d@w0</earliest>
        <latest>@w0</latest>
      </default>
    </input>
<search base="base_12">
        <query>| search (($app$) AND ($environment$))| stats count by test
| fields test</query>
      </search>

remember, when you don't use a streaming command as stats or timechart, to add, at the end of the base search, the fields command with all the fields you need to use in your dashboard panels.

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Splunk at Cisco Live 2025: Learning, Innovation, and a Little Bit of Mr. Brightside

Pack your bags (and maybe your dancing shoes)—Cisco Live is heading to San Diego, June 8–12, 2025, and Splunk ...

Splunk App Dev Community Updates – What’s New and What’s Next

Welcome to your go-to roundup of everything happening in the Splunk App Dev Community! Whether you're building ...

The Latest Cisco Integrations With Splunk Platform!

Join us for an exciting tech talk where we’ll explore the latest integrations in Cisco &#43; Splunk! We’ve ...