Dashboards & Visualizations

How to send value from one dashboard drilldown into the linked dashboard

SudeepDell
New Member

I currently have a dashboard that displays a bunch of nodes (for example, Firewall1). When I click on that node, it drills down to a dashboard that contains a bunch of metrics, such as response time and CPU usage. As of right now, every node on the main dashboard links to the same secondary one, which has a drop down list to filter all the queries for the metrics by the node that you want to look at. Instead of have this done manually, is there a way to where when I click on Firewall1 and get send to the dashboard with the metrics, I can pass the Node Name value (which would be "Firewall1") into the other dashboard's queries so that they automatically load the metrics for Firewall1?

0 Karma

renjith_nair
Legend

Hi @SudeepDell,

You could use form.token_name to pass the parameter. See below example

Main Dashboard with node (sourcetype in my case)

<dashboard>
  <label>DrillDown</label>
  <row>
    <panel>
      <single>
        <search>
          <query>|stats count|eval node="splunkd"|fields - count</query>
          <earliest>-1s</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">all</option>
        <drilldown>
          <link target="_blank">/app/search/metric?form.node=$click.value2$</link>
        </drilldown>
      </single>
    </panel>
  </row>
</dashboard>

Drilldown dashboard with metrics

<form>
  <label>Metric</label>
  <fieldset submitButton="false">
    <input type="dropdown" token="node">
      <label>Node</label>
      <fieldForLabel>sourcetype</fieldForLabel>
      <fieldForValue>sourcetype</fieldForValue>
      <search>
        <query>index=_*|stats count by sourcetype</query>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </search>
    </input>
  </fieldset>
  <row>
    <panel>
      <chart>
        <search>
          <query>index=_* sourcetype=$node$|timechart span=1m count</query>
          <earliest>-5m</earliest>
          <latest>now</latest>
        </search>
        <option name="charting.chart">line</option>
        <option name="charting.drilldown">none</option>
      </chart>
    </panel>
  </row>
</form>
Happy Splunking!
0 Karma

renjith_nair
Legend

@SudeepDell, did it work for you?

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

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...