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!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...