<?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 Is there a way to drilldown to two different dashboards depending on column i click? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163615#M46455</link>
    <description>&lt;P&gt;In my dashboard, it loads data into a table with 4 columns&lt;/P&gt;

&lt;P&gt;Now what i require is to drill down to Dashboard1 if any cell is clicked in column1.&lt;BR /&gt;
If any cell is clicked in column2 i want to drill down to Dashboard2.&lt;/P&gt;

&lt;P&gt;No Drill down should happen if any cell clicked in Column 3 and 4.&lt;/P&gt;

&lt;P&gt;Is there way i can achieve this??&lt;/P&gt;</description>
    <pubDate>Wed, 14 May 2014 11:22:12 GMT</pubDate>
    <dc:creator>adityapavan18</dc:creator>
    <dc:date>2014-05-14T11:22:12Z</dc:date>
    <item>
      <title>Is there a way to drilldown to two different dashboards depending on column i click?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163615#M46455</link>
      <description>&lt;P&gt;In my dashboard, it loads data into a table with 4 columns&lt;/P&gt;

&lt;P&gt;Now what i require is to drill down to Dashboard1 if any cell is clicked in column1.&lt;BR /&gt;
If any cell is clicked in column2 i want to drill down to Dashboard2.&lt;/P&gt;

&lt;P&gt;No Drill down should happen if any cell clicked in Column 3 and 4.&lt;/P&gt;

&lt;P&gt;Is there way i can achieve this??&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2014 11:22:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163615#M46455</guid>
      <dc:creator>adityapavan18</dc:creator>
      <dc:date>2014-05-14T11:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to drilldown to two different dashboards depending on column i click?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163616#M46456</link>
      <description>&lt;P&gt;Yes, the feature in Splunk is called Dynamic Drilldown. You can learn more about it, starting with this section in the documentation: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.1/Viz/Dynamicdrilldownindashboardsandforms"&gt;Dynamic drilldown in dashboards&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You will also find a large number of questions and answers about dynamic drilldown in this forum if you search it.&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2014 15:13:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163616#M46456</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2014-05-14T15:13:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to drilldown to two different dashboards depending on column i click?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163617#M46457</link>
      <description>&lt;P&gt;I don't think you can use the Dynamic Drilldown feature here, because you say you need the page to not redirect when certain columns are clicked.   Maybe there's a way that Dynamic Drilldown can do that but I don't think so. &lt;/P&gt;

&lt;P&gt;Fortunately this is fairly easy in Sideview Utils, although it uses some "lesser known" features.   I am assuming that you have a SimpleResultsTable module on the page, with its drilldown param set to "all".&lt;/P&gt;

&lt;P&gt;Downstream from the SimpleResultsTable module first we use the Sideview ValueSetter module to create a $foo$ token called $dynamicURL$,  that will be set to "Dashboard1" or "Dashboard2" as appropriate and that will be null if any other value is clicked. &lt;/P&gt;

&lt;P&gt;Then we use the Sideview Gate module to only let the cascading push through if the $dynamicURL$ token is defined.  This ensures that the only way the user will redirect is by clicking the two appropriate columns. &lt;/P&gt;

&lt;P&gt;Then finally we use the Redirector module to plug in the URL along with whatever drilldown arguments and timeranges we want to pass over to the target page.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="ValueSetter"&amp;gt;
  &amp;lt;param name="name"&amp;gt;dynamicURL&amp;lt;/param&amp;gt;
  &amp;lt;param name="if.$click.name2=column1"&amp;gt;Dashboard1&amp;lt;/param&amp;gt;
  &amp;lt;param name="if.$click.name2=column2"&amp;gt;Dashboard2&amp;lt;/param&amp;gt;

  &amp;lt;module name="Gate"&amp;gt;
    &amp;lt;param name="requiredKeys"&amp;gt;dynamicURL&amp;lt;/param&amp;gt;

    &amp;lt;module name="Redirector"&amp;gt;
      &amp;lt;param name="url"&amp;gt;$dynamicURL$&amp;lt;/param&amp;gt;
      &amp;lt;param name="arg.foo"&amp;gt;$click.fields.foo.rawValue$&amp;lt;/param&amp;gt;
      &amp;lt;param name="arg.earliest"&amp;gt;$search.timeRange.earliest$&amp;lt;/param&amp;gt;
      &amp;lt;param name="arg.latest"&amp;gt;$search.timeRange.latest$&amp;lt;/param&amp;gt;
    &amp;lt;/module&amp;gt;
  &amp;lt;/module&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://sideviewapps.com/apps/sideview-utils"&gt;http://sideviewapps.com/apps/sideview-utils&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2014 23:01:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Is-there-a-way-to-drilldown-to-two-different-dashboards/m-p/163617#M46457</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2014-06-02T23:01:53Z</dc:date>
    </item>
  </channel>
</rss>

