Dashboards & Visualizations

Time range in form search

xiaoyuew
Path Finder

Is there a way to add time range in a form search, eg. specify start time and end time? right now i have a drop down list with a few options. But we would like to let user specify a time range as what they wish to see.

Thanks.

Tags (1)
0 Karma

Ayn
Legend

In addition to Draineh's answer, this can also be done in simple XML. Just use <input type="time"/>. Complete example below:

<form>
  <label>Example search form</label>

  <searchTemplate>sourcetype="example" someparam="$someparam$"</searchTemplate>

  <fieldset>
    <input type="text" token="someparam">
      <label>Value to filter someparam on</label>
      <seed>*</seed>
    </input>

    <input type="time"/>
  </fieldset>

  <row>
    <table>
      <title>Search results</title>
      <fields>_time, someparam, _raw</fields>
      <option name="showPager">true</option>
      <option name="count">30</option>
      <option name="displayRowNumbers">false</option>
      </table>
  </row>
</form>
0 Karma

xiaoyuew
Path Finder

I understand that there is an option for that which is to change the configuration in the times.conf.However, we don't want to do that. We just want this form to have fewer drop down options.

0 Karma

xiaoyuew
Path Finder

Thanks, Ayn.

What if I only want to have 3 options in the dropdown list, instead of the 10 choices we have by default? say i only want last 4 hours, last 24 hours and last 7 days.

0 Karma

Drainy
Champion

Yes.
If your dashboard is in advanced XML (you can convert it by adding ?showsource=1 to the end of your dashboard link, e.g /en-US/app/search/dashboard_live?showsource=1 This will display a page with a box that contains the converted simple xml in advanced xml)

You can then use the code;

  <module name="HiddenSearch" layoutPanel="panel_row1_col1" autoRun="True">
        <module name="TimeRangePicker">    
        <param name="label">Select Time Range: </param>
          <param name="searchWhenChanged">True</param>
          <param name="selected">Last 4 hours</param>

If you enclose all searches you want to inherit the time from this module by closing the module after them then as the user changes the selected time range it will update all searches.

To define the time ranges (other than default) you can edit times.conf (or create your own in the appname/local directory. See the following link for more detail;

http://docs.splunk.com/Documentation/Splunk/latest/admin/Timesconf

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...