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>
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...