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!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...