Dashboards & Visualizations

How to hide progress bar in dashboard panels?

sduddilla
Path Finder

I want to hide progress bar in dashboard panels. Everything in the dashboard is working fine.
Since I added the auto refresh of the dashboard every few minutes in the form, I want to hide the progress.
Documentation at http://docs.splunk.com/Documentation/Splunk/6.5.0/Viz/PanelreferenceforSimplifiedXML#search says 'refresh.display' option can be used. it did not work.
Is the syntax supposed to be different or is there any other option that I can try? I appreciate the help.
Here is sample code.

<form **refresh="30**" hideSplunkBar="true" hideFooter="true" hideEdit="true">
   ...
   ...

   <row>
    <panel>
      <table>
        <search>
          <query>| savedSearch xxx
          </query>
        </search>
        <option name="link.openSearch.visible">false</option>
        <option name="link.inspectSearch.visible">false</option>
        <option name="link.exportResults.visible">false</option>
        **<option name="refresh.display">false</option>**
        <option name="list.drilldown">full</option>
        <option name="list.wrap">1</option>
        <option name="maxLines">1</option>
        <option name="raw.drilldown">none</option>
        <option name="rowNumbers">false</option>
        <option name="table.drilldown">none</option>
        <option name="table.wrap">1</option>
        <option name="type">list</option>
        <option name="wrap">true</option>
        <option name="dataOverlayMode">none</option>
        <option name="drilldown">none</option>
        <option name="count">1</option>
      </table>
    </panel>
  </row>
</form

Thanks

0 Karma
1 Solution

niketn
Legend

You can either set refresh.display to none from Edit Panel or from Simple XML.

<option name="refresh.display">none</option>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

You can either set refresh.display to none from Edit Panel or from Simple XML.

<option name="refresh.display">none</option>
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

sduddilla
Path Finder

niketnilay,
That worked. Thank You.
Another question what is the syntax for auto refreshing at panel level, instead of complete dashboard?

0 Karma

sduddilla
Path Finder

I found put that by adding refresh statements in the base search, I can control auto refresh in the panels where this base search is used. In case someone has similar question here is the sample. This also applies if you have search code within the panel.

  <search id="YYY">
    <query>| savedsearch XXX
    </query>
    **<refresh>30s</refresh>
    <refreshType>delay</refreshType>**
  </search>
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, ...