<?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: Dashboard drilldown conditions in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536094#M36578</link>
    <description>&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.1.1/Viz/DrilldownLinkToURL" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.1.1/Viz/DrilldownLinkToURL&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where is the protocol&amp;nbsp;identifier?&lt;/P&gt;</description>
    <pubDate>Sat, 16 Jan 2021 01:09:12 GMT</pubDate>
    <dc:creator>to4kawa</dc:creator>
    <dc:date>2021-01-16T01:09:12Z</dc:date>
    <item>
      <title>Dashboard drilldown conditions</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/535645#M36526</link>
      <description>&lt;P&gt;Hi folks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Quick question, but I'm running out of ideas.&lt;/P&gt;&lt;P&gt;I have a dashboard where I compare results between US and EU, one of the filters is "side" where I differentiate between EU and US.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I select EU results, I'd like to be able to click on a result and it'll open up a new window with details of how that result was achieved (it's from another website)&lt;BR /&gt;Same scenario&amp;nbsp; for when i click on the Side=NA, it leads me to a different website.&lt;/P&gt;&lt;P&gt;I tried this, but as far as the EU part work, the US does not...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
&amp;lt;condition match="$side$ = EU"&amp;gt;&amp;lt;/condition&amp;gt;
&amp;lt;condition&amp;gt;
&amp;lt;link target="_blank"&amp;gt;/app/SplunkEnterpriseSecuritySuite/correlation_search_edit?search=$row.rule_name$&amp;lt;/link&amp;gt;
&amp;lt;/condition&amp;gt;

&amp;lt;condition match="$side$ = US"&amp;gt;&amp;lt;/condition&amp;gt;
&amp;lt;condition&amp;gt;
&amp;lt;link target="_blank"&amp;gt;www.youtube.com&amp;lt;/link&amp;gt;
&amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any hints or ideas?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Klaudia&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jan 2021 12:45:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/535645#M36526</guid>
      <dc:creator>klaudiac</dc:creator>
      <dc:date>2021-01-13T12:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard drilldown conditions</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536094#M36578</link>
      <description>&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.1.1/Viz/DrilldownLinkToURL" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/8.1.1/Viz/DrilldownLinkToURL&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;where is the protocol&amp;nbsp;identifier?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Jan 2021 01:09:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536094#M36578</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2021-01-16T01:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard drilldown conditions</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536159#M36579</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/223748"&gt;@klaudiac&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You condition statements don't make sense. You have 4 conditions there, two are empty, i.e.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;condition match="$side$ = EU"&amp;gt;&amp;lt;/condition&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does not do anything, so all you have there is a single drilldown, which will most likely be the first one Splunk comes across, i.e. the link to the ES correlation search edit&lt;/P&gt;&lt;P&gt;&amp;nbsp;Try this - note the &amp;amp;quot; values before and after the EU/ES, as they should be quoted for string matching.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;drilldown&amp;gt;
  &amp;lt;condition match="$side$ = &amp;amp;quot;EU&amp;amp;quot;"&amp;gt;
    &amp;lt;link target="_blank"&amp;gt;/app/SplunkEnterpriseSecuritySuite/correlation_search_edit?search=$row.rule_name$&amp;lt;/link&amp;gt;
  &amp;lt;/condition&amp;gt;
  &amp;lt;condition match="$side$ = &amp;amp;quot;US&amp;amp;quot;"&amp;gt;
    &amp;lt;link target="_blank"&amp;gt;www.youtube.com&amp;lt;/link&amp;gt;
  &amp;lt;/condition&amp;gt;
&amp;lt;/drilldown&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Jan 2021 23:18:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536159#M36579</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2021-01-17T23:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dashboard drilldown conditions</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536197#M36587</link>
      <description>&lt;P&gt;That worked, thanks so much!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2021 11:47:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Dashboard-drilldown-conditions/m-p/536197#M36587</guid>
      <dc:creator>klaudiac</dc:creator>
      <dc:date>2021-01-18T11:47:26Z</dc:date>
    </item>
  </channel>
</rss>

