<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363108#M43826</link>
    <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;Please take this example code I created (it is generic so just copy and paste to your instance).&lt;/P&gt;

&lt;P&gt;You have a pi-chart in the top and when you click a row, it assigns a token "src" that is used below for showing a table of count agains time to that corresponding drilled down value:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;DrillDownPanelToAnother&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| tstats count where index=_internal by source&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;pie&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="src"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| tstats count where index=_internal AND source="$src$"  by _time span=1h&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 19 Mar 2018 07:52:42 GMT</pubDate>
    <dc:creator>tiagofbmm</dc:creator>
    <dc:date>2018-03-19T07:52:42Z</dc:date>
    <item>
      <title>How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363106#M43824</link>
      <description>&lt;P&gt;How to create a drill down from one panel to another? I don't have any data for example but any scenario for explanation would be really appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 07:43:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363106#M43824</guid>
      <dc:creator>abhi04</dc:creator>
      <dc:date>2018-03-19T07:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363107#M43825</link>
      <description>&lt;P&gt;This may help you:&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/230345/how-can-i-drill-down-from-one-panel-pie-chart-to-a.html"&gt;https://answers.splunk.com/answers/230345/how-can-i-drill-down-from-one-panel-pie-chart-to-a.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Also refer this doc:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.2/Viz/ContextualDrilldown"&gt;http://docs.splunk.com/Documentation/Splunk/7.0.2/Viz/ContextualDrilldown&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 07:51:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363107#M43825</guid>
      <dc:creator>p_gurav</dc:creator>
      <dc:date>2018-03-19T07:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363108#M43826</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;

&lt;P&gt;Please take this example code I created (it is generic so just copy and paste to your instance).&lt;/P&gt;

&lt;P&gt;You have a pi-chart in the top and when you click a row, it assigns a token "src" that is used below for showing a table of count agains time to that corresponding drilled down value:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  &amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;DrillDownPanelToAnother&amp;lt;/label&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;chart&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| tstats count where index=_internal by source&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-60m@m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="charting.chart"&amp;gt;pie&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="src"&amp;gt;$click.value$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/chart&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| tstats count where index=_internal AND source="$src$"  by _time span=1h&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Mar 2018 07:52:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363108#M43826</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-19T07:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363109#M43827</link>
      <description>&lt;P&gt;@tiagofbmm, I think you got the requirement reversed. Drilldown from Pie Chart to Table.&lt;/P&gt;

&lt;P&gt;@abhi04, Refer to one of my recent answers for the same (you can refer to unaccepted answer which is closed to your request): &lt;A href="https://answers.splunk.com/answers/625052/display-different-panel-depends-on-selected-name-i.html"&gt;https://answers.splunk.com/answers/625052/display-different-panel-depends-on-selected-name-i.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Also refer to &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;Splunk Dashboard Examples&lt;/A&gt; App which has several examples on Drilldown.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 08:10:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363109#M43827</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2018-03-19T08:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363110#M43828</link>
      <description>&lt;P&gt;@niketnilay thanks for noticing that. Edited and corrected&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 08:16:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363110#M43828</guid>
      <dc:creator>tiagofbmm</dc:creator>
      <dc:date>2018-03-19T08:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a drill down in dashboard where if clicked on one panel i.e. a pie chart takes us to a second panel with table formats?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363111#M43829</link>
      <description>&lt;P&gt;Thanks niketnilay and tiagofbmm.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Mar 2018 02:48:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/How-to-create-a-drill-down-in-dashboard-where-if-clicked-on-one/m-p/363111#M43829</guid>
      <dc:creator>abhi04</dc:creator>
      <dc:date>2018-03-20T02:48:20Z</dc:date>
    </item>
  </channel>
</rss>

