Dashboards & Visualizations

How to get the date and time of Time Range Picker Control?

mohanbangw
New Member

How to get the date and time of Time Range Picker Control?

<input type="time" searchWhenChanged="true" token="TIMERANGE">
      <label>SWIFT Time Range</label>
      <default>
        <earliest>@d</earliest>
        <latest>now</latest>
      </default>
</input>

I mean start date and end date in human readable format. It will be great if can get the startepoch and endepoch

0 Karma

sundareshr
Legend

There are couple of options within the query.

1) Use addinfo

your base search earliest=$TIMERANGE.earliest$ latest=$TIMERANGE.latest$ | addinfo | table info_min_time info_max_time

https://docs.splunk.com/Documentation/Splunk/6.4.3/SearchReference/Addinfo

*OR*

your base search | eval e=if(isnum($TIMERANGE.earliest$, $TIMERANGE.earliest$, relative_time(now(), $TIMERANGE.earliest$) | eval l=if(isnum($TIMERANGE.latest$, $TIMERANGE.latest$, relative_time(now(), $TIMERANGE.latest$)
0 Karma
Get Updates on the Splunk Community!

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...