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 .

---
What goes around comes around. If it helps, hit it with Karma 🙂

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 .

---
What goes around comes around. If it helps, hit it with Karma 🙂
0 Karma
Get Updates on the Splunk Community!

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...