<?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: Dynamic drilldown dashboard in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397542#M25990</link>
    <description>&lt;P&gt;Hi @anirudhgl,&lt;/P&gt;

&lt;P&gt;Please try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
    &amp;lt;condition match="$click.value2|s$=&amp;amp;quot; &amp;lt;some-value-here-no-space-on-both-the-sides&amp;gt; &amp;amp;quot;"&amp;gt;
      &amp;lt;link&amp;gt;
          &amp;lt;![CDATA[
             /app/your_app_name/dashboard_name?column_clicked=$click.name2$&amp;amp;value_clicked=$click.value2$
          ]]&amp;gt;
      &amp;lt;/link&amp;gt;
    &amp;lt;/condition&amp;gt;
   ...... more conditions with match ...........

   &amp;lt;condition&amp;gt;       &amp;lt;!-- condition without match is like else, if nothing matched this link will be used. --&amp;gt;
      &amp;lt;link&amp;gt;
          &amp;lt;![CDATA[
             /app/your_app_name/dashboard_name?column_clicked=$click.name2$&amp;amp;value_clicked=$click.value2$
          ]]&amp;gt;
      &amp;lt;/link&amp;gt;
    &amp;lt;/condition&amp;gt;
 &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
    <pubDate>Tue, 04 Jun 2019 13:45:19 GMT</pubDate>
    <dc:creator>VatsalJagani</dc:creator>
    <dc:date>2019-06-04T13:45:19Z</dc:date>
    <item>
      <title>Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397540#M25988</link>
      <description>&lt;P&gt;I have a dashboard in which i have one table chart. In column a of that table i have some 5-7 values. Whenever i click any value of table it is getting drill-down to other dashboard. Each value of column A has different kind of drilldown dashboard. for example if i click on first value it shows 4 charts in drilldown dashboard and when click on second value drilldown to separate dashboard having 3 charts. None of the drilldown dashboard shows same kind of data and charts.&lt;BR /&gt;
So is it possible in splunk that i can have one dynamic drilldown dashboard for all value and whenever i click on any column A value the drilldown dashboard must show all the panels as per the click value. It will pass the table's column A value in drilldown dashboard and accorrding to that value the drilldown dashboard shows charts.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 12:35:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397540#M25988</guid>
      <dc:creator>anirudhgl</dc:creator>
      <dc:date>2019-06-03T12:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397541#M25989</link>
      <description>&lt;P&gt;Hi @anirudhgl ,&lt;/P&gt;

&lt;P&gt;You can set the value of the token passed to the drilldown dashboard based on the column clicked as follows:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
   &amp;lt;link&amp;gt;
       &amp;lt;![CDATA[
          /app/your_app_name/dashboard_name?column_clicked=$click.name2$&amp;amp;value_clicked=$click.value2$
       ]]&amp;gt;
   &amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also, you can find different tokens available at drilldown here: &lt;A href="https://docs.splunk.com/Documentation/Splunk/7.2.6/Viz/PanelreferenceforSimplifiedXML#Predefined_drilldown_tokens"&gt;https://docs.splunk.com/Documentation/Splunk/7.2.6/Viz/PanelreferenceforSimplifiedXML#Predefined_drilldown_tokens&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2019 16:32:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397541#M25989</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2019-06-03T16:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397542#M25990</link>
      <description>&lt;P&gt;Hi @anirudhgl,&lt;/P&gt;

&lt;P&gt;Please try this.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
    &amp;lt;condition match="$click.value2|s$=&amp;amp;quot; &amp;lt;some-value-here-no-space-on-both-the-sides&amp;gt; &amp;amp;quot;"&amp;gt;
      &amp;lt;link&amp;gt;
          &amp;lt;![CDATA[
             /app/your_app_name/dashboard_name?column_clicked=$click.name2$&amp;amp;value_clicked=$click.value2$
          ]]&amp;gt;
      &amp;lt;/link&amp;gt;
    &amp;lt;/condition&amp;gt;
   ...... more conditions with match ...........

   &amp;lt;condition&amp;gt;       &amp;lt;!-- condition without match is like else, if nothing matched this link will be used. --&amp;gt;
      &amp;lt;link&amp;gt;
          &amp;lt;![CDATA[
             /app/your_app_name/dashboard_name?column_clicked=$click.name2$&amp;amp;value_clicked=$click.value2$
          ]]&amp;gt;
      &amp;lt;/link&amp;gt;
    &amp;lt;/condition&amp;gt;
 &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Hope this helps!!!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jun 2019 13:45:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397542#M25990</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-04T13:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397543#M25991</link>
      <description>&lt;P&gt;Hi Harsh,&lt;/P&gt;

&lt;P&gt;With your above resolution we have to create separate drilldown dashboard for all value present in source dashboard So whichever value gets clicked it will drilldown to that specific dahboard.&lt;BR /&gt;
Is there any way that we can have one drilldown dashboard and whatever value we click on in source dashboard it should update the panels in that dashboard only.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Sachin&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 09:38:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397543#M25991</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-18T09:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397544#M25992</link>
      <description>&lt;P&gt;Hi @sachinbansal,&lt;/P&gt;

&lt;P&gt;You don't have to create different dashboards. You can show panels based on tokens set like the following:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel depends="$token1$"&amp;gt;
    your panel xml here...
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 18 Jun 2019 10:13:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397544#M25992</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2019-06-18T10:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397545#M25993</link>
      <description>&lt;P&gt;Hi @harshpatel ,&lt;/P&gt;

&lt;P&gt;Sorry man but did not get your point. In which dashboard we need to use that and how is it gonna work?&lt;BR /&gt;
Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2019 10:49:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397545#M25993</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-18T10:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397546#M25994</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/188308"&gt;@sachinbansal&lt;/a&gt; - What Harsh is saying is that, with  &lt;CODE&gt;depends&lt;/CODE&gt; in row and panel you can hide row or panel from the dashboard, when you set the $token1$ then only panel will be shown to dashboard.&lt;/P&gt;

&lt;P&gt;When you go to &lt;STRONG&gt;/app/your_app_name/dashboard_name?column_clicked=$click.name2$&lt;/STRONG&gt; link Splunk automatically set token  &lt;CODE&gt;column_clicked&lt;/CODE&gt; in the dashboard.&lt;BR /&gt;
So if you have some panel depends on this token it will be visible in dashboard. Other panels might be depends on other token will not be visible.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:57:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397546#M25994</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2020-09-30T00:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397547#M25995</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/93915"&gt;@VatsalJagani&lt;/a&gt; - So we will get the clicked value in column_clicked token and in drill down dashboard we have to set different token as per the value we have in column_clicked token and then make specific panel depends on specific token.&lt;BR /&gt;
Am i right? &lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 00:57:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397547#M25995</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2020-09-30T00:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397548#M25996</link>
      <description>&lt;P&gt;@sachinbansal Yes correct&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 05:20:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397548#M25996</guid>
      <dc:creator>harshpatel</dc:creator>
      <dc:date>2019-06-19T05:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397549#M25997</link>
      <description>&lt;P&gt;Great. So one more thing can iwe similarly change the panel and dashboard label of drilldown dashboard as per the value we have clicked on in source dashboard.&lt;BR /&gt;
Does tokens work under label tag?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 05:54:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397549#M25997</guid>
      <dc:creator>sachinbansal</dc:creator>
      <dc:date>2019-06-19T05:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic drilldown dashboard</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397550#M25998</link>
      <description>&lt;P&gt;Not sure about dashboard label, but it works in panel or chart title.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2019 06:50:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dynamic-drilldown-dashboard/m-p/397550#M25998</guid>
      <dc:creator>VatsalJagani</dc:creator>
      <dc:date>2019-06-19T06:50:15Z</dc:date>
    </item>
  </channel>
</rss>

