Dashboards & Visualizations

What does this mean "Search was not dispatched. To adjust search dispatch settings, edit the dashboard XML"?

supraja
Path Finder

Hi Team,

 

i  tried created a dashboard with tab view. 

used linklist to create a tabs. i would like to load the panels only when linked tab is clicked. 

could some one please suggest me on how to achieve that .

 

<form theme="dark">
<label>search_depends</label>
<description>test</description>
<init>
<unset token="dont_run"></unset>
<set token="run"></set>
</init>
<fieldset submitButton="false">
<input type="link" token="tok_tabs">
<label>tabs</label>
<choice value="panel1">panel1</choice>
<choice value="panel2">panel2</choice>
<default>DataAnalysis</default>
<change>
<condition value="panel1">
<set token="panel1">true</set>
<unset token="panel2"></unset>
</condition>
<condition value="panel2">
<set token="panel2">true</set>
<unset token="panel1"></unset>
</condition>
</change>
</input>
</fieldset>
<row depends="$panel1$">
<panel>
<single>
<title>load only panel1</title>
<search depends="$run$" id="dont_run">
<query>|makeresults|eval data="Can you see me?!"</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
<option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
<option name="refresh.display">progressbar</option>
<option name="underLabel"># tickets closed last month</option>
</single>
</panel>
</row>
<row depends="$panel2$">
<panel>
<single>
<title>load only panel2</title>
<search depends="$dont_run$" id="run">
<query>|makeresults|eval data="Can you see me?!"</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
<option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
<option name="refresh.display">progressbar</option>
<option name="underLabel"># tickets closed last month</option>
</single>
</panel>
</row>
</form>

 

Labels (1)
Tags (1)
0 Karma

supraja
Path Finder
0 Karma

YouWereOutraged
Loves-to-Learn

Would this solve the problem? 

<form theme="dark" version="1.2">
  <label>search_depends</label>
  <description>test</description>
  #<init>
   # <unset token="dont_run"></unset>
  #  <set token="run"></set>
  #</init>
  <fieldset submitButton="false">
    <input type="link" token="tok_tabs">
      <label>tabs</label>
      <choice value="panel1">panel1</choice>
      <choice value="panel2">panel2</choice>
      <choice value="panel3">panel3</choice>
      <default>DataAnalysis</default>
      <change>
        <condition value="panel1">
          <set token="panel1">true</set>
          <unset token="panel2"></unset>
          <unset token="panel3"></unset>
        </condition>
        <condition value="panel2">
          <set token="panel2">true</set>
          <unset token="panel1"></unset>
          <unset token="panel3"></unset>
        </condition>
        <condition value="panel3">
          <set token="panel3">true</set>
          <unset token="panel1"></unset>
          <unset token="panel2"></unset>
        </condition>
      </change>
    </input>
  </fieldset>
  <row depends="$panel1$">
    <panel>
      <single>
        <title>load only panel1</title>
        <search depends="$panel1$" id="signins">
          <query>|makeresults|eval data="Can you see me?!"</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
        <option name="refresh.display">progressbar</option>
        <option name="underLabel"># tickets closed last month</option>
      </single>
    </panel>
  </row>
  <row depends="$panel2$">
    <panel>
      <single>
        <title>load only panel2</title>
        <search depends="$panel2$" id="operations">
          <query>|makeresults|eval data="Can you see me?!"</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
        <option name="refresh.display">progressbar</option>
        <option name="underLabel"># tickets closed last month</option>
      </single>
    </panel>
  </row>
  <row depends="$panel3$">
    <panel>
      <single>
        <title>load only panel3</title>
        <search depends="$panel3$" id="usecases">
          <query>|makeresults|eval data="Can you see me?!"</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="rangeColors">["0x53a051","0x0877a6","0xf8be34","0xf1813f","0xdc4e41"]</option>
        <option name="refresh.display">progressbar</option>
        <option name="underLabel"># tickets closed last month</option>
      </single>
    </panel>
  </row>
</form>
0 Karma
Get Updates on the Splunk Community!

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to ...

Announcing the Migration of the Splunk Add-on for Microsoft Azure Inputs to Officially Supported Splunk ...