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!

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer at Splunk .conf24 ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

Splunk Lantern is Splunk’s customer success center that provides advice from Splunk experts on valuable data ...

Combine Multiline Logs into a Single Event with SOCK: a Step-by-Step Guide for ...

Combine multiline logs into a single event with SOCK - a step-by-step guide for newbies Olga Malita The ...