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!

Upcoming Webinar: Unmasking Insider Threats with Slunk Enterprise Security’s UEBA

Join us on Wed, Dec 10. at 10AM PST / 1PM EST for a live webinar and demo with Splunk experts! Discover how ...

.conf25 technical session recap of Observability for Gen AI: Monitoring LLM ...

If you’re unfamiliar, .conf is Splunk’s premier event where the Splunk community, customers, partners, and ...

A Season of Skills: New Splunk Courses to Light Up Your Learning Journey

There’s something special about this time of year—maybe it’s the glow of the holidays, maybe it’s the ...