<?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 in pie chart based on the selection made in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353226#M166524</link>
    <description>&lt;P&gt;Hi Glad it worked. I have converted to answer. Please accept.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Aug 2017 13:26:38 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-08-07T13:26:38Z</dc:date>
    <item>
      <title>How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353223#M166521</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I have a pie chart with different dataservices and its size percentage. I am trying setup drilldown for each of these dataservices. Like if DB2 clicked, it should take me to DB2 database size dashboard, if MSSQL clicked it should take me to MSSQL database size dashboard.&lt;/P&gt;

&lt;P&gt;Here is the drilldown code i have,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;        &amp;lt;link&amp;gt;&amp;lt;![CDATA[/app/sre/$click.value$_size_details?form.field1.earliest=$earliest$&amp;amp;form.field1.latest=$latest$&amp;amp;earliest=0&amp;amp;latest=]]&amp;gt;&amp;lt;/link&amp;gt;
     &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I have one drilldown link pattern. I am able to get $click.value$ based on the click made in the dashboard. But the problem is it is in uppercase "DB", "MSSQL" etc. Whereas the actual view id the drilldown has to traverse through is in lowercase like this - /app/sre/mssql_size_details?form.field1.earliest=$earliest$&amp;amp;form.field1.latest=$latest$&amp;amp;earliest=0&amp;amp;latest=&lt;/P&gt;

&lt;P&gt;How do I convert the $click.value$ to lowercase and then pass it on the url ?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 15:15:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353223#M166521</guid>
      <dc:creator>sangs8788</dc:creator>
      <dc:date>2020-09-29T15:15:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353224#M166522</link>
      <description>&lt;P&gt;@sangs8788, Is this a drilldown from table or chart? Can you try the following (eval sets token to lower case and then used by drilldown):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
     &amp;lt;eval token="lowerDBName"&amp;gt;lower($click.value$)&amp;lt;/eval&amp;gt;
     &amp;lt;link&amp;gt;&amp;lt;![CDATA[/app/sre/$lowerDBName$_size_details?form.field1.earliest=$earliest$&amp;amp;form.field1.latest=$latest$&amp;amp;earliest=0&amp;amp;latest=]]&amp;gt;&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 07 Aug 2017 12:29:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353224#M166522</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-08-07T12:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353225#M166523</link>
      <description>&lt;P&gt;It is pie chart. Thanks it worked. &lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 12:36:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353225#M166523</guid>
      <dc:creator>sangs8788</dc:creator>
      <dc:date>2017-08-07T12:36:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353226#M166524</link>
      <description>&lt;P&gt;Hi Glad it worked. I have converted to answer. Please accept.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Aug 2017 13:26:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353226#M166524</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-08-07T13:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353227#M166525</link>
      <description>&lt;P&gt;@niketnilay  how to drill down from a donut chart using the $click.value$....the clicked value is not getting passed ...please help.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 10:53:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353227#M166525</guid>
      <dc:creator>preacher_15</dc:creator>
      <dc:date>2019-07-25T10:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353228#M166526</link>
      <description>&lt;P&gt;Which is the visualization you are using as donut has 2-3 viz for donut on Splunkbase. Some support built in drill down for others JS based drill down would need to be coded depending on viz DOM structure.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 11:38:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353228#M166526</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-07-25T11:38:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353229#M166527</link>
      <description>&lt;P&gt;@niketnilay  i am using a custom 2d donut chart which was created by my teammates...when i click on the donut new panel is opening as a drilldown but it shows no results found...if i check the query the token is passed just as i have given.. token=$click.value$...it is not taking the clicked value .&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 12:02:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353229#M166527</guid>
      <dc:creator>preacher_15</dc:creator>
      <dc:date>2019-07-25T12:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353230#M166528</link>
      <description>&lt;P&gt;@niketnilay any inputs regarding this?? need help..&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 17:05:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353230#M166528</guid>
      <dc:creator>preacher_15</dc:creator>
      <dc:date>2019-07-25T17:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to drilldown in pie chart based on the selection made</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353231#M166529</link>
      <description>&lt;P&gt;@preacher_15 if it is your custom app you would need to check code and ensure drill down is present. By default custom visualization s do not have drill down enabled. Good thing is you can code it yourself as per how you have built the custom visualization.&lt;/P&gt;

&lt;P&gt;You can also follow existing custom visualization for donut which has drill down and create something similar.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 19:26:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-drilldown-in-pie-chart-based-on-the-selection-made/m-p/353231#M166529</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-07-25T19:26:57Z</dc:date>
    </item>
  </channel>
</rss>

