<?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 drilldown to specific page for each value? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424681#M27972</link>
    <description>&lt;P&gt;THank You . It works&lt;/P&gt;</description>
    <pubDate>Sat, 27 Apr 2019 06:55:40 GMT</pubDate>
    <dc:creator>khanlarloo</dc:creator>
    <dc:date>2019-04-27T06:55:40Z</dc:date>
    <item>
      <title>How to drilldown to specific page for each value?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424679#M27970</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;I have several fields with different values in my dashboard. When I click on any of the values, I want to go to the page corresponding to that amount .&lt;/P&gt;

&lt;P&gt;How can I do that? &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; A 
  1
  2
  3
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;When I click on 3 go to page that shows the result for 3. and when click on 2 go to page that show result for 2 ...&lt;BR /&gt;
each of them have different page on my app.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 09:29:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424679#M27970</guid>
      <dc:creator>khanlarloo</dc:creator>
      <dc:date>2019-04-24T09:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown to specific page for each value?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424680#M27971</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;Try like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;drilldown&amp;lt;/label&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;| makeresults 
| eval A="1,2,3" 
| makemv delim="," A
| mvexpand A |table A&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;cell&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;condition match="'click.value' == &amp;amp;quot;1&amp;amp;quot;"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;/app/search/testdashboard1&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition match="'click.value' == &amp;amp;quot;2&amp;amp;quot;"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;/app/search/testdashboard2&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
          &amp;lt;condition match="'click.value' == &amp;amp;quot;3&amp;amp;quot;"&amp;gt;
            &amp;lt;link target="_blank"&amp;gt;/app/search/testdashboard3&amp;lt;/link&amp;gt;
          &amp;lt;/condition&amp;gt;
        &amp;lt;/drilldown&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>Wed, 24 Apr 2019 09:43:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424680#M27971</guid>
      <dc:creator>vnravikumar</dc:creator>
      <dc:date>2019-04-24T09:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown to specific page for each value?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424681#M27972</link>
      <description>&lt;P&gt;THank You . It works&lt;/P&gt;</description>
      <pubDate>Sat, 27 Apr 2019 06:55:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424681#M27972</guid>
      <dc:creator>khanlarloo</dc:creator>
      <dc:date>2019-04-27T06:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown to specific page for each value?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424682#M27973</link>
      <description>&lt;P&gt;if i want to say if index=a then go to specific page how can i say ?&lt;BR /&gt;
my query is :&lt;BR /&gt;
index= a or index=b | stats count by index &lt;BR /&gt;
i using chart&lt;/P&gt;</description>
      <pubDate>Sat, 04 May 2019 09:49:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-drilldown-to-specific-page-for-each-value/m-p/424682#M27973</guid>
      <dc:creator>khanlarloo</dc:creator>
      <dc:date>2019-05-04T09:49:23Z</dc:date>
    </item>
  </channel>
</rss>

