<?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 do I drilldown to a unique URL using a table row's unique token? in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463337#M6781</link>
    <description>&lt;P&gt;@memarshall63  - thanks so much for your time to write this comment. This led me down the right path! The below appears to create a unique URL per row that is clicked. Thanks so much.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;            &amp;lt;link target="_blank"&amp;gt;
              &amp;lt;![CDATA[ &lt;A href="https://other.tool/$click.value$" target="test_blank"&gt;https://other.tool/$click.value$&lt;/A&gt; ]]&amp;gt;
            &amp;lt;/link&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 03 Apr 2020 12:59:44 GMT</pubDate>
    <dc:creator>jsven7</dc:creator>
    <dc:date>2020-04-03T12:59:44Z</dc:date>
    <item>
      <title>How do I drilldown to a unique URL using a table row's unique token?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463335#M6779</link>
      <description>&lt;P&gt;&lt;STRONG&gt;Situation:&lt;/STRONG&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;P&gt;I have a panel. The panel creates a token for me from a field I extract from the search. In the same panel I create a URL that enables me to "drilldown".&lt;/P&gt;

&lt;P&gt;&lt;ROW&gt;&lt;BR /&gt;
    &lt;PANEL&gt;&lt;BR /&gt;
      &lt;TITLE&gt;Open Tickets&lt;/TITLE&gt;&lt;BR /&gt;
      &lt;TABLE&gt;&lt;BR /&gt;
        &lt;SEARCH&gt;&lt;BR /&gt;
          &lt;QUERY&gt;&lt;BR /&gt;
            search...&lt;BR /&gt;
            | table "ticket_num", "Creation Date", "other_field", "other_field"&lt;BR /&gt;
          &lt;/QUERY&gt;&lt;BR /&gt;
          &lt;EARLIEST&gt;$field3.earliest$&lt;/EARLIEST&gt;&lt;BR /&gt;
          &lt;LATEST&gt;$field3.latest$&lt;/LATEST&gt;&lt;BR /&gt;
        &lt;DONE&gt;&lt;BR /&gt;&lt;BR /&gt;
          &lt;SET token="ticket_num"&gt;$result.ticket_num$&lt;/SET&gt;&lt;BR /&gt;
        &lt;/DONE&gt;&lt;BR /&gt;
        &lt;/SEARCH&gt;&lt;BR /&gt;
        5&lt;BR /&gt;
        none&lt;BR /&gt;
        row&lt;BR /&gt;
        true&lt;BR /&gt;
            &lt;DRILLDOWN&gt;&lt;P&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;       &amp;lt;eval&amp;gt;replace($row.url$, "http://", ""&amp;lt;/eval&amp;gt;
       &amp;lt;link target="_blank"&amp;gt;
         &amp;lt;![CDATA[ https://other.tool/$ticket_num$ ]]&amp;gt;
       &amp;lt;/link&amp;gt;
     &amp;lt;/drilldown&amp;gt;

  &amp;lt;/table&amp;gt;
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;/P&gt;&lt;/DRILLDOWN&gt;&lt;P&gt;&lt;/P&gt;
&lt;LI&gt;&lt;P&gt;My table appears to work nicely where each row represents unique open tickets.&lt;/P&gt;&lt;/LI&gt;


&lt;P&gt;&lt;STRONG&gt;Problem:&lt;/STRONG&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;All rows, upon clicking, "drilldown" only to the first row's "ticket_num". Which I think makes sense.&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&lt;STRONG&gt;Question:&lt;/STRONG&gt;&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Can you pleas share if its possible with ES simple XML and without any other add-on to modify the panel so that, upon clicking a row, I "drilldown" to the respective row's unique "ticket_num"?&lt;/LI&gt;
&lt;/UL&gt;
&lt;/TABLE&gt;&lt;/PANEL&gt;&lt;/ROW&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:48:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463335#M6779</guid>
      <dc:creator>jsven7</dc:creator>
      <dc:date>2020-09-30T04:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I drilldown to a unique URL using a table row's unique token?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463336#M6780</link>
      <description>&lt;P&gt;You'll likely need some form of this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;drilldown&amp;gt;
  &amp;lt;link target="_blank"&amp;gt;/app/some_app/some_dashboard?token=$click.value$&amp;amp;amp;token2=$row.fieldname$&amp;lt;/link&amp;gt;
&amp;lt;/drilldown&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.2/Viz/tokens"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.2/Viz/tokens&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Apr 2020 12:42:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463336#M6780</guid>
      <dc:creator>memarshall63</dc:creator>
      <dc:date>2020-04-02T12:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I drilldown to a unique URL using a table row's unique token?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463337#M6781</link>
      <description>&lt;P&gt;@memarshall63  - thanks so much for your time to write this comment. This led me down the right path! The below appears to create a unique URL per row that is clicked. Thanks so much.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;            &amp;lt;link target="_blank"&amp;gt;
              &amp;lt;![CDATA[ &lt;A href="https://other.tool/$click.value$" target="test_blank"&gt;https://other.tool/$click.value$&lt;/A&gt; ]]&amp;gt;
            &amp;lt;/link&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Apr 2020 12:59:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463337#M6781</guid>
      <dc:creator>jsven7</dc:creator>
      <dc:date>2020-04-03T12:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I drilldown to a unique URL using a table row's unique token?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463338#M6782</link>
      <description>&lt;P&gt;No problem.  I believe $click.value$ will give you the field that is clicked.  However, you may want to use a specific field regardless of where on the row the click occurs.   When that occurs I think $row.$ is the choice for that behavior.    At any rate... good luck.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2020 13:27:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-do-I-drilldown-to-a-unique-URL-using-a-table-row-s-unique/m-p/463338#M6782</guid>
      <dc:creator>memarshall63</dc:creator>
      <dc:date>2020-04-03T13:27:44Z</dc:date>
    </item>
  </channel>
</rss>

