Splunk Search

Is it possible to add "starting the search" to the link switcher option?

HeinzWaescher
Motivator

Hi,

I would like to implement some options to show/hide panels in a dashbaord.
Currently the plan to have an option for each panel at the top of the dashboard, so that Splunk users can decide what they want to see.

< input type="checkbox" token="panel_1" searchWhenChanged="true">
         <label>Overview</label>
         <choice value="true">Show</choice>
         <change>
           <condition label="Show">
             <set token="panel_1">true</set>
           </condition>
         </change>
         <default>true</default>
       </input>

 < panel depends="$panel_1$">

As far as I understand this, Splunk is running ALL searches when I open the dashboard, no matter what is selected in this option. Is it possible to only start the search of a panel, when the user selects the show option? This would reduce loading times and load caused by the dashboard.

Thanks in advance

0 Karma
1 Solution

493669
Super Champion

Hi @HeinzWaescher,
Basically your search meeting the token criteria before your depends clause.
so In you panel query add your token in eval statement so that it will wait for input and not run the query until depends token is set.
try this:

< input type="checkbox" token="panel_1" searchWhenChanged="true">
          <label>Overview</label>
          <choice value="true">Show</choice>
          <change>
            <condition label="Show">
              <set token="panel_1">true</set>
            </condition>
          </change>
          <default>true</default>
        </input>
  < panel depends="$panel_1$">
:
:
<query> index=<indexname>|eval temp="$panel_1$"|...remaining query|table <required fields></query>

View solution in original post

493669
Super Champion

Hi @HeinzWaescher,
Basically your search meeting the token criteria before your depends clause.
so In you panel query add your token in eval statement so that it will wait for input and not run the query until depends token is set.
try this:

< input type="checkbox" token="panel_1" searchWhenChanged="true">
          <label>Overview</label>
          <choice value="true">Show</choice>
          <change>
            <condition label="Show">
              <set token="panel_1">true</set>
            </condition>
          </change>
          <default>true</default>
        </input>
  < panel depends="$panel_1$">
:
:
<query> index=<indexname>|eval temp="$panel_1$"|...remaining query|table <required fields></query>

HeinzWaescher
Motivator

Very nice approach to add a "useless" token into the search query 🙂 That solves my issue, thanks a lot!

0 Karma

493669
Super Champion

glad to help 🙂

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Data Persistence in the OpenTelemetry Collector

This blog post is part of an ongoing series on OpenTelemetry. What happens if the OpenTelemetry collector ...

Thanks for the Memories! Splunk University, .conf25, and our Community

Thank you to everyone in the Splunk Community who joined us for .conf25, which kicked off with our iconic ...

Introducing Splunk 10.0: Smarter, Faster, and More Powerful Than Ever

Now On Demand Whether you're managing complex deployments or looking to future-proof your data ...