Dashboards & Visualizations

How to set a Token when the dashboard is 100% loaded

robertlynch2020
Influencer

hi

I need to be able to know when a dashboard is 100% completed, how can i get a token for this?

I had an idea of doing something like this after each search.

    <done>
            <condition match="'job.resultCount'>0">

               <set token="PAGE_LOADED1">LOADED</set>
            </condition>

          </done>

However this is a very manual way of doing it (PAGE_LOADED1 + PAGE_LOADED2 + PAGE_LOADED3 > 0 etc..), i was hoping for an easy peace of code that i can put at the top of each dashboard.

Thanks
Robert

Tags (1)
0 Karma

wmyersas
Builder

Use the <done> tag inside your searches:

<search>
    <done>
        <set token="thispanelstoken">done</set>
    </done>
</search>

Relying on $job.resultCount$>0 is not a good practice: what happens when the search returns no values? Your condition would fail, but it would be "done".

What are you trying to do with these "completed" tokens?

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...