Dashboards & Visualizations

how to Add a link in dashboard to open other dashboard like drill down

umsundar2015
Path Finder

Hi ,

My requirement is to keep a link in a dashboard , which should open another dashboard or report .The linked dashboard will have a statistical table of data .The data should be based on the filter selection from parent dashboard.

Please help me out to sort this out.

0 Karma

jeffland
SplunkTrust
SplunkTrust

For example if your parent dashboard and target dashboard both have a time picker and a dropdown, then they will both have these elements:

<input type="time" token="time_tok">
  ...
<input type="dropdown" token="foo">
  ...

In the drilldown action of the parent element, you'll need to pass the token values to the target in the url. If it's a table or some visualization like that, it might look like this:

<drilldown>
  <link target="_blank">/app/<your_app>/<target_dashboard>?form.foo=$foo$&form.time_tok.earliest=$time_tok.earliest$&form.time_tok.latest=$time_tok.latest$</link>
</drilldown>

If the token names are different on the target dashboard, you'll need to change the names accordingly. If you want the drilldown to actually come from a link and not a table, you'll have to change the link target to update on token changes. This could be done like this:

<panel>
  <html>
    <a href="<url>/target_dashboard?form.foo=$foo$&form.time_tok.earliest=$time_tok.earliest$&form.time_tok.latest=$time_tok.latest$">Link to target dashboard with filters based on this pages settings</a>
  <html>
<panel>

You should refer to these docs for more detail. You are most interested in <link> and <drilldown>.

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...