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!

.conf24 | Registration Open!

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

Splunk is officially part of Cisco

Revolutionizing how our customers build resilience across their entire digital footprint.   Splunk ...

Splunk APM & RUM | Planned Maintenance March 26 - March 28, 2024

There will be planned maintenance for Splunk APM and RUM between March 26, 2024 and March 28, 2024 as ...