<?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: Is it possible to have multiple possibility of drilldown, based on the same field ? in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341621#M6714</link>
    <description>&lt;P&gt;Have you looked at &lt;CODE&gt;workflow actions&lt;/CODE&gt;?  Unfortunately these do not work in &lt;CODE&gt;table&lt;/CODE&gt; visualization panels but &lt;EM&gt;they DEFINITELY should&lt;/EM&gt; (please somebody open an ER).&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/Knowledge/CreateworkflowactionsinSplunkWeb"&gt;http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/Knowledge/CreateworkflowactionsinSplunkWeb&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 23 Apr 2017 22:32:57 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2017-04-23T22:32:57Z</dc:date>
    <item>
      <title>Is it possible to have multiple possibility of drilldown, based on the same field ?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341620#M6713</link>
      <description>&lt;P&gt;hi all, &lt;BR /&gt;
Is it possible to have multiple possibility of drilldown, based on the same field ?&lt;BR /&gt;
I have table with a column "source_ip". I need to open a few options when clicking on the source IP address - for example 1.Blocke IP   2.Release IP&lt;/P&gt;

&lt;P&gt;My existing drilldown allows me only to open one link.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
           &amp;lt;link&amp;gt;
          &lt;A href="http://192.168.1.1/blockscript?ip=$row.source_ip$" target="test_blank"&gt;http://192.168.1.1/blockscript?ip=$row.source_ip$&lt;/A&gt;
            &amp;lt;/link&amp;gt;
 &amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How could I achieve that ?&lt;/P&gt;</description>
      <pubDate>Sun, 23 Apr 2017 10:05:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341620#M6713</guid>
      <dc:creator>bugnet</dc:creator>
      <dc:date>2017-04-23T10:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have multiple possibility of drilldown, based on the same field ?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341621#M6714</link>
      <description>&lt;P&gt;Have you looked at &lt;CODE&gt;workflow actions&lt;/CODE&gt;?  Unfortunately these do not work in &lt;CODE&gt;table&lt;/CODE&gt; visualization panels but &lt;EM&gt;they DEFINITELY should&lt;/EM&gt; (please somebody open an ER).&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/Knowledge/CreateworkflowactionsinSplunkWeb"&gt;http://docs.splunk.com/Documentation/SplunkCloud/6.5.1612/Knowledge/CreateworkflowactionsinSplunkWeb&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Apr 2017 22:32:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341621#M6714</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2017-04-23T22:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have multiple possibility of drilldown, based on the same field ?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341622#M6715</link>
      <description>&lt;P&gt;Can you add two column to each row of output in your table?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;YourBaseSearchToPrintTableWithSourceIP&amp;gt;
| eval Blocked="Blocked IP"
| eval Source="Source IP"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then code your drilldown based on which column was clicked and pick up the $row.source_ip$ for both with different base URLs as per your need when a row in either Blocked or Source IP column is clicked.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;condition field="Blocked"&amp;gt;
        &amp;lt;link&amp;gt;
              &lt;A href="http://192.168.1.1/blockscript?ip=$row.source_ip$" target="test_blank"&gt;http://192.168.1.1/blockscript?ip=$row.source_ip$&lt;/A&gt;
         &amp;lt;/link&amp;gt;
     &amp;lt;/condition&amp;gt;
     &amp;lt;condition field="Source"&amp;gt;
        &amp;lt;link&amp;gt;
              &lt;A href="http://&amp;lt;AnotherURL&amp;gt;?ip=$row.source_ip$" target="test_blank"&gt;http://&amp;lt;AnotherURL&amp;gt;?ip=$row.source_ip$&lt;/A&gt;
         &amp;lt;/link&amp;gt;
     &amp;lt;/condition&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 24 Apr 2017 04:04:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341622#M6715</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-04-24T04:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to have multiple possibility of drilldown, based on the same field ?</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341623#M6716</link>
      <description>&lt;P&gt;Not so helpful to me.   More ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2017 06:29:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Is-it-possible-to-have-multiple-possibility-of-drilldown-based/m-p/341623#M6716</guid>
      <dc:creator>bugnet</dc:creator>
      <dc:date>2017-04-26T06:29:41Z</dc:date>
    </item>
  </channel>
</rss>

