Dashboards & Visualizations

prebuilt panels - condition the behaviour

gravid
New Member

Hi,

I'm having a predefined panel which I want to reuse in the same dashboard.
Each "instantiation" of the panel (using panel ref=panel_name) needs to do a slight different search.

Is there a way to control it?
something like:
panel ref="my_panel" myVar="hello"

in the predefined panel:
panel
query

      index="playground4" Name="ABC*" 
      | eval FACTOR=$my_var  | rest of the code...


      query

panel

0 Karma

thambisetty
SplunkTrust
SplunkTrust

Hi @gravid,

I think you are looking for base search.

what is base search?
Base is search something master search and this search results can be used in multiple panels by using the id of it.
Below is the sample code shows that search id="base" results will be used in panel1.

<form>
</input>
    <input type="text" token="my_var" searchWhenChanged="true">
      <label>Factor</label>
      <default>*</default>
    </input>
 <search id="base">
    <query>index="playground4" Name="ABC*"  FACTOR=$my_var$
<earliest>$earliest$</earliest>
    <latest>$latest$</latest>
  </search>
<row>
    <panel>
      <chart>
        <title>panel1</title>
        <search base="base">
          <query>| additional query</query>
        </search>
      </chart>
    </panel>
  </row>
</form>
————————————
If this helps, give a like below.
0 Karma

gravid
New Member

Hi thambisetty,

Thx for your answer.

I actually use base search in my code. I just sent a portion of my code so it was not part of it.
I need to create a dashboard with multiple charts which are exactly the same, except for 2 variables taken from dropdown lists.

My intention was to mimic a some looping here.
I dont want to write and maintain exactly the same code (almost) on many rows and panels, so I thought to use a prebuilt panel that can get a value as an input to a var used in the panel.

Any idea how to achieve loop in the XML code?

Thx again
Guy

0 Karma
Get Updates on the Splunk Community!

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer at Splunk .conf24 ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...