Dashboards & Visualizations

how to show "Waiting for data" in my html panel table while the base search loads

Nadhiyaa
Path Finder

how to show "Waiting for data" in my html panel table while the base search loads

Tags (1)
0 Karma

renjith_nair
Legend

@Nadhiyaa ,

Try this

<dashboard>
  <search id="base_search_id">
    <query>index=_internal earliest=-30d|stats count by sourcetype,source</query>
    <done>
      <set token="base_loaded">true</set>
    </done>
  </search>
  <row rejects="$base_loaded$">
    <panel>
      <html>
        <h1>Waiting for data ..........................</h1>
      </html>
    </panel>
  </row>
  <row>
    <panel  depends="$base_loaded$">
      <table>
        <search base="base_search_id">
          <query>|fields sourcetype</query>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</dashboard>
---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

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

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 ...