Getting Data In

How to use time input in another input search

matansocher
Contributor

Hi

I have a dashboard with 2 input - time and another field ('fieldA').
'fieldA' is populated by a search, and it has his own time.
How do I use the time input to the search that populates 'fieldA'?

thanks

1 Solution

tiagofbmm
Influencer

If you have a TimePicker input, you can use its token and pass it to your other input search. Check my example below:

<form>
  <label>Time</label>
  <fieldset submitButton="false">
    <input type="time" token="timepicker">
      <label></label>
      <default>
        <earliest>-24h@h</earliest>
        <latest>now</latest>
      </default>
    </input>
    <input type="dropdown" token="src">
      <label>Sources</label>
      <fieldForLabel>source</fieldForLabel>
      <fieldForValue>source</fieldForValue>
      <search>
        <query>| tstats count where index=_internal by source</query>
        <earliest>$timepicker.earliest$</earliest>
        <latest>$timepicker.latest$</latest>
      </search>
    </input>
  </fieldset>
</form>

View solution in original post

tiagofbmm
Influencer

If you have a TimePicker input, you can use its token and pass it to your other input search. Check my example below:

<form>
  <label>Time</label>
  <fieldset submitButton="false">
    <input type="time" token="timepicker">
      <label></label>
      <default>
        <earliest>-24h@h</earliest>
        <latest>now</latest>
      </default>
    </input>
    <input type="dropdown" token="src">
      <label>Sources</label>
      <fieldForLabel>source</fieldForLabel>
      <fieldForValue>source</fieldForValue>
      <search>
        <query>| tstats count where index=_internal by source</query>
        <earliest>$timepicker.earliest$</earliest>
        <latest>$timepicker.latest$</latest>
      </search>
    </input>
  </fieldset>
</form>
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

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