Dashboards & Visualizations

Is it possible to link multiple dashboards to table cells of some different dashboard?

aayushisplunk1
Path Finder

i have a Dashboard A which contains a panel A, which is nothing but a table.

I wish to link the table cells to different dashboards such that when a user clicks on:

  • **cell 1**, she should be redirected to Dashboard B
  • **cell 2**, she should be redirected to Dashboard C
  • **cell 3**, she should be redirected to Dashboard D

Is it a possible scenario in Splunk? If yes, then how can we achieve it ?

I have already tried the "edit drill down" option with which i am able to link only one dashboard.

Tags (1)
0 Karma
1 Solution

renjith_nair
Legend

@aayushisplunk1 ,

If you could use either field name or value as dashboard name, try below

<dashboard>
  <label>Master Dashboard</label>
  <row>
    <panel>
      <table>
        <search>
          <query>|makeresults|eval A="A",B="B"</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="count">10</option>
        <option name="drilldown">cell</option>
        <drilldown>
          <link target="_blank">/app/search/dashboard$click.name$</link>
        </drilldown>
      </table>
    </panel>
  </row>
</dashboard>

In the above example, I am using click.name(token) in the dashboard name and based on the cell (field), it redirects to either dashboardA or dashboardB .

Happy Splunking!

View solution in original post

0 Karma

renjith_nair
Legend

@aayushisplunk1 ,

If you could use either field name or value as dashboard name, try below

<dashboard>
  <label>Master Dashboard</label>
  <row>
    <panel>
      <table>
        <search>
          <query>|makeresults|eval A="A",B="B"</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="count">10</option>
        <option name="drilldown">cell</option>
        <drilldown>
          <link target="_blank">/app/search/dashboard$click.name$</link>
        </drilldown>
      </table>
    </panel>
  </row>
</dashboard>

In the above example, I am using click.name(token) in the dashboard name and based on the cell (field), it redirects to either dashboardA or dashboardB .

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

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