Dashboards & Visualizations

interlinked Dashboard

Tannawi_Chauha1
Engager

created a dashboard showing status of server. created another dashboard which show status of all the application running under that server.
requirement: when the server status goes down, i have to click on it and it will take me to another dashboard which will show me which application is down due to which server is down.

Thanks in advance

Tags (1)
0 Karma

jkat54
SplunkTrust
SplunkTrust

Check this out:

https://conf.splunk.com/session/2013/Using_Splunk_LisaGuinn_HowToUseDynamicDrilldown.pdf

Also this:

http://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/Understandbasictableandchartdrilldownactions

It's going to look a bit like this:

MAIN DASHBOARD:

<dashboard>
  <label>Dynamic Drilldown</label>
  <row>
    <panel>
      <table>
        <search>
          <query>index=indexName ERROR | chart count by host </query>
          <earliest>-7d@h</earliest>
          <latest>now</latest>
        </search>
        <drilldown>
          <link target="_blank">
            /apps/MyApp/drilldown_target_dashboard_name?host=$row.host$
          </link>
        </drilldown>
        <option name="drilldown">row</option>
      </table>
    </panel>
  </row>
</dashboard>

DRILLED INTO DASHBOARD:

<dashboard>
  <row>
    <panel>
      <chart>
        <title>Host Application Error Details/title>
        <search>
          <query>
            index=indexName host=$row.host$ | stats count by Application
          </query>
          <earliest>-30d@d</earliest>
          <latest>now</latest>
        </search>
      </chart>
    </panel>
  </row>
</dashboard>
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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