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!

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...

Cloud Monitoring Console - Unlocking Greater Visibility in SVC Usage Reporting

For Splunk Cloud customers, understanding and optimizing Splunk Virtual Compute (SVC) usage and resource ...

Automatic Discovery Part 3: Practical Use Cases

If you’ve enabled Automatic Discovery in your install of the Splunk Distribution of the OpenTelemetry ...