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
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Observability Simplified: Combining User Experience, Application Performance & ...

Tech Talk Observability Simplified: Combining User Experience, Application Performance & Network ...

Event Series May & June: From Network Visibility to Service Intelligence

Unifying the Network: Moving from Alert Noise to Service Intelligence with Splunk ITSI In today’s hybrid ...