Dashboards & Visualizations

Does Splunk Support drilldown within the same window/panel?

dnv007
Explorer

What i mean to ask is,

1)Would it be possible to have a chart(any) and when clicked on a value the chart changes/displays values relevant to the click in the same panel?
2)Also, if the fields are common would the values change on other charts?

Basically want to know if it can work similar to Tableau.

0 Karma
1 Solution

VatsalJagani
SplunkTrust
SplunkTrust

Hi @dnv007,
I think In-Page-Drilldown can solve your issue. You can add drilldown in XML of chart.

<panel>
   <table>
      <search>....</search>
      <drilldown>
         <set token="selected_value">$row.fieldname$</set>
       <drilldown>
   </table>
<panel>
<panel depends="$selected_value$">
   <single>
       <search>
            <query>| stats count | count=$selected_value$</query>
       <search>
    </single>
</panel>

Above dashboard initially have only one panel, once you select any value from it, it will open one more panel having selected value (here second panel is singleViewChart so supports only numbers). Here we are drilldown from table so we have used $row.fieldname$, replace fieldname with column name you want to use.

These drilldown tokens is available for all kind of charts.
https://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/PanelreferenceforSimplifiedXML#chart_.28event...

depends can be used with chart, panel and row element.

We can also set token conditionally. Explore more about drilldown and conditions. https://docs.splunk.com/Documentation/Splunk/7.2.6/Viz/PanelreferenceforSimplifiedXML#condition_.28d...

Check answer for full example - https://answers.splunk.com/answers/662719/how-to-create-a-drill-down-from-one-panel-to-anoth.html

View solution in original post

0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

Hi @dnv007,
I think In-Page-Drilldown can solve your issue. You can add drilldown in XML of chart.

<panel>
   <table>
      <search>....</search>
      <drilldown>
         <set token="selected_value">$row.fieldname$</set>
       <drilldown>
   </table>
<panel>
<panel depends="$selected_value$">
   <single>
       <search>
            <query>| stats count | count=$selected_value$</query>
       <search>
    </single>
</panel>

Above dashboard initially have only one panel, once you select any value from it, it will open one more panel having selected value (here second panel is singleViewChart so supports only numbers). Here we are drilldown from table so we have used $row.fieldname$, replace fieldname with column name you want to use.

These drilldown tokens is available for all kind of charts.
https://docs.splunk.com/Documentation/Splunk/6.4.2/Viz/PanelreferenceforSimplifiedXML#chart_.28event...

depends can be used with chart, panel and row element.

We can also set token conditionally. Explore more about drilldown and conditions. https://docs.splunk.com/Documentation/Splunk/7.2.6/Viz/PanelreferenceforSimplifiedXML#condition_.28d...

Check answer for full example - https://answers.splunk.com/answers/662719/how-to-create-a-drill-down-from-one-panel-to-anoth.html

0 Karma

dnv007
Explorer

Hi Vatsal,

Thank you so much for a very helpful reply.

I just have one more question. Is this possible even on the 6 version? does this have version constraints?

Thanks and Regards,
Deepika

0 Karma

VatsalJagani
SplunkTrust
SplunkTrust

Yes Deepika, if you are talking about Splunk version 6. But I would recommend using 6.6.x version as the earlier versions of splunk6 might not have so many Splunk functions.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...