Dashboards & Visualizations

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

robertlynch2020
Motivator

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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...