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!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...