Splunk Search

How to edit my XML to use a timepicker output to control the time range of the search?

nehal_shah
Explorer

Hi All,

I have a Splunk form where I am using 2 time pickers to come up with different times for 3 different joins in my search.
I, however, want to calculate the earliest in my XML to be 2w before any of the times.
As soon as I put eval in the change section, it doesn't work. I am, however, not sure of the syntax anyway.
I have modified the form to just include the bits that are relevant here.

Any help is appreciated.

<input type="time" token="baseline" searchWhenChanged="false">
  <label>Time span for gettign healthy data</label>
  <default>
    <earliestTime>-20m</earliestTime>
    <latestTime>-10m</latestTime>
  </default>
 </input>


  <label>Time span for the issue</label>
  <default>
    <earliestTime>-10m</earliestTime>
    <latestTime>now</latestTime>
  </default>
   <change>
      <eval token="new_time">'issue.earliest'-2w</eval> 
   </change>
</input>


<panel>
  <title>Stream interruption cosidering the baseline in previous 10mins</title>
  <table>
    <search>
       <query>
         "some query here"
      </query>
      <earliest>$new_time$</earliest>
      <latest>$issue.latest$</latest>
    </search>
    <option name="wrap">true</option>
    <option name="rowNumbers">false</option>
    <option name="dataOverlayMode">none</option>
    <option name="drilldown">cell</option>
    <option name="count">50</option>
  </table>
</panel>
0 Karma
1 Solution

sundareshr
Legend

Try something like this

<input token="issue">
      <change>
        <eval token="new_time">if(isnum($issue.earliest$), relative_time($issue.earliest$, "-2w@w"), relative_time(relative_time(now(), $issue.earliest$), "-2w@w"))</eval>
      </change>
</input>

View solution in original post

0 Karma

sundareshr
Legend

Try something like this

<input token="issue">
      <change>
        <eval token="new_time">if(isnum($issue.earliest$), relative_time($issue.earliest$, "-2w@w"), relative_time(relative_time(now(), $issue.earliest$), "-2w@w"))</eval>
      </change>
</input>
0 Karma

nehal_shah
Explorer

Thanks buddy. Works like a charm.

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