<?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: Redirecting to different views based on click value in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100790#M6990</link>
    <description>&lt;P&gt;Oh.  Sorry I misunderstood.  The "url" param of the redirector can also accept $foo$ substitution, so I recommend something like &lt;CODE&gt;&amp;lt;param name="url"&amp;gt;$click.fields.host$_host_detail&amp;lt;/param&amp;gt;&lt;/CODE&gt;  and then you just create three similar but different views - DB_host_detail, CRM_host_detail, SP_host_detail.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 14:25:36 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2020-09-28T14:25:36Z</dc:date>
    <item>
      <title>Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100785#M6985</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have a chart which shows errorcount by host(SP,DB,CRM,etc).&lt;BR /&gt;
now i want to do a drilldown suppose if i click on SP i should get a dashboard showing charts for SP only similarily for other two too.&lt;/P&gt;

&lt;P&gt;how can i do it&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jul 2013 09:48:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100785#M6985</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-07-19T09:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100786#M6986</link>
      <description>&lt;P&gt;Hi there,&lt;BR /&gt;
You're going to need advanced xml here.&lt;BR /&gt;
You need to add the below module (instead of the usual redirection to the flash timeline) :&lt;/P&gt;

&lt;P&gt;&lt;MODULE name="SimpleDrilldown"&gt;&lt;BR /&gt;
  &lt;OBJECT&gt;&lt;PARAM name="links" /&gt;&lt;BR /&gt;
   &lt;PARAM name="*" /&gt;&lt;BR /&gt;
         /app/yourapp/yourdashboard?host=$click.value$&lt;BR /&gt;
   &lt;BR /&gt;
  &lt;BR /&gt;
&lt;/OBJECT&gt;&lt;/MODULE&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jul 2013 20:03:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100786#M6986</guid>
      <dc:creator>Mahieu</dc:creator>
      <dc:date>2013-07-20T20:03:34Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100787#M6987</link>
      <description>&lt;P&gt;i am using side view utils redirector and target dashboard should chaneg based on host value passed from source&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2013 05:06:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100787#M6987</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-07-22T05:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100788#M6988</link>
      <description>&lt;P&gt;See the documentation within Sideview Utils itself under "General Techniques &amp;gt; Linking",  in which there are several examples of how to use the Redirector module for simple drilldowns.  Make sure to click the litle link that says "view the XML source for this example", and follow along in the example's XML source as you're reading the docs. &lt;/P&gt;

&lt;P&gt;Also, if you don't have such links, that probably means you're using the ancient 1.3.5 version, so you should upgrade to the latest (2.5) from the Sideview website  at &lt;A href="http://sideviewapps.com/apps/sideview-utils"&gt;http://sideviewapps.com/apps/sideview-utils&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;But basically it looks like this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="Redirector"&amp;gt;
  &amp;lt;param name="url"&amp;gt;your_view_name_here&amp;lt;/param&amp;gt;
  &amp;lt;param name="arg.host"&amp;gt;$host.rawValue$&amp;lt;/param&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Again the docs pages about linking and the other pages about inline drilldowns will tell you everything you need to know. &lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2013 16:28:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100788#M6988</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2013-07-22T16:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100789#M6989</link>
      <description>&lt;P&gt;hi i have already passed host . what i want is charts on target view should change according to host value passed.if i click SP i should see chrt showing error by area category etc and when i click on DB then it should show charts for error code severity etc&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2013 08:46:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100789#M6989</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-07-24T08:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100790#M6990</link>
      <description>&lt;P&gt;Oh.  Sorry I misunderstood.  The "url" param of the redirector can also accept $foo$ substitution, so I recommend something like &lt;CODE&gt;&amp;lt;param name="url"&amp;gt;$click.fields.host$_host_detail&amp;lt;/param&amp;gt;&lt;/CODE&gt;  and then you just create three similar but different views - DB_host_detail, CRM_host_detail, SP_host_detail.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:25:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100790#M6990</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2020-09-28T14:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100791#M6991</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;
Great!!!!!!!! thank you this is what i wanted &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2013 05:32:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100791#M6991</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-07-25T05:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100792#M6992</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I feel this can be done by SimpleXML by using "drilldown" tag for dynamic drilldown.&lt;/P&gt;

&lt;P&gt;You have to use "click.value" or "click.value2" depends upon whether the chart is bar chart or non-bar chart.&lt;/P&gt;

&lt;P&gt;Let me know your views on this.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Amit Saxena&lt;/P&gt;</description>
      <pubDate>Sun, 28 Jul 2013 14:21:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100792#M6992</guid>
      <dc:creator>amit_saxena</dc:creator>
      <dc:date>2013-07-28T14:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100793#M6993</link>
      <description>&lt;P&gt;hi,&lt;BR /&gt;
i have already commented on second ans thats what i want to do&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2013 05:50:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100793#M6993</guid>
      <dc:creator>ChhayaV</dc:creator>
      <dc:date>2013-07-29T05:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Redirecting to different views based on click value</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100794#M6994</link>
      <description>&lt;P&gt;Before click on host "SP", I want to put default host "SP" ..........&lt;BR /&gt;
did you try for default value  based on click value?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jun 2015 13:44:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Redirecting-to-different-views-based-on-click-value/m-p/100794#M6994</guid>
      <dc:creator>kavyaa</dc:creator>
      <dc:date>2015-06-30T13:44:26Z</dc:date>
    </item>
  </channel>
</rss>

