Dashboards & Visualizations

Dashboard navigating to other dashboards with links

bleung93
Path Finder

What are some ways that you can go about doing this?

Scenario:
5 Dashboards with simple xml. 10 row tags. All are displayed in one column.

Goal:
Have a url direct to one of the dashboards (dashboard_1). In dashboard_1, 2 links, previous and next. Previous link is disabled because it is set on the first dashboard. Click next link to redirect to dashboard_2 and so on. Meanwhile in dashboard_5, next is disabled because you have hit the last dashboard.

I have already tried using html to display links of all dashboards essentially displaying 5 links. What would you have to do to just have 2 links to navigate?

Tags (2)
0 Karma

strive
Influencer

Use HTML modules to achieve this.
Sample: In your dashboard view xml, place the HTML module where you want the link to appear.

<module name="HTML">
  <param name="html"><![CDATA[  
            <style type="text/css"> 
                  .HTML a {
                        float: right;
                   }
                 // define your other CSS styles                        
            </style>
            <a href="/splunkApp/en-US/app/<app_name>/report?q=QueryParams> Right Link</a> 
            ]]>
    </param> 
</module>

Dont forget to set app_name and QueryParams

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