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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...