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!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...