Dashboards & Visualizations

If I have a "time" token in one panel and click on a specific time, how can I make a result appear in another panel?

Madhan45
Path Finder

I have created a token "time" in the first panel, and if I click in specific time, it should give the result for that specific time in the 3rd panel. How can i do this? What are the required changes I need to do in 3rd panel?

Tags (3)
0 Karma

woodcock
Esteemed Legend

Assuming you have done something like this (note time_tok1😞

 <fieldset autoRun="true" submitButton="false">
   <input type="time" token="time_tok1" searchWhenChanged="true">
     <label>First TimePicker</label>
     <default>Last 24 hours</default>
   </input>
 </fieldset>

Then change your panel like this:

 <search>
   <query>My Search Here</query>
   <earliest>$time_tok1.earliest$</earliest>
   <latest>$time_tok1.latest$</latest>
 </search>
0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...