<?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 do a simple drill down from a table? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173228#M186570</link>
    <description>&lt;P&gt;Just want to make sure I understand. By default, each cell in a table is a clickable value, which will run a refined search using that value. So, for example, if my search is &lt;CODE&gt;index=_internal introspection | top 10 max_age&lt;/CODE&gt; and one of my result rows has a cell that shows a max_age value of 17, if I click the 17, then Splunk will run the following search: &lt;CODE&gt;index=_internal introspection  max_age=17&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Are you asking how to click an item in a table cell and have it run an entirely new search, using a token that takes the value from that cell? You can use the &lt;CODE&gt;click.value&lt;/CODE&gt; token to achieve this, and the &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.3/Viz/Understandbasictableandchartdrilldownactions#Basic_contextual_drilldown_example" target="_blank"&gt;basic contextual drilldown example&lt;/A&gt; in the docs should show you how.&lt;/P&gt;

&lt;P&gt;You can also download the &lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;Dashboard Examples&lt;/A&gt; app to see live examples of all these simple XML capabilities.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 19:46:10 GMT</pubDate>
    <dc:creator>ChrisG</dc:creator>
    <dc:date>2020-09-28T19:46:10Z</dc:date>
    <item>
      <title>How do I do a simple drill down from a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173225#M186567</link>
      <description>&lt;P&gt;Splunk newbie here, I have been testing it for a few days already. I can now create searches and dashboards based on saved searches. However, I am having trouble in making 'drill down' to work.  I would like a drill down to happen whenever I click in a particular value in a cell. When a user clicks on a cell item say 'Account1' I would like another search performed and the results displayed on the same page.&lt;/P&gt;

&lt;P&gt;Any examples will be highly appreciated&lt;/P&gt;

&lt;P&gt;Regards&lt;BR /&gt;
Hillary&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2015 20:39:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173225#M186567</guid>
      <dc:creator>BobKimata</dc:creator>
      <dc:date>2015-05-06T20:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a simple drill down from a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173226#M186568</link>
      <description>&lt;P&gt;Have you looked at the &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.3/Viz/Understandbasictableandchartdrilldownactions"&gt;documentation topic about drilldowns&lt;/A&gt; in the &lt;EM&gt;Dashboards and Visualizations&lt;/EM&gt; manual? It has examples of &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.3/Viz/Understandbasictableandchartdrilldownactions#Table"&gt;basic table drilldown&lt;/A&gt; as well as &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.3/Viz/Understandbasictableandchartdrilldownactions#Dynamic_drilldown"&gt;dynamic drilldown&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2015 21:03:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173226#M186568</guid>
      <dc:creator>ChrisG</dc:creator>
      <dc:date>2015-05-06T21:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a simple drill down from a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173227#M186569</link>
      <description>&lt;P&gt;I have gone through the documentation but I cant seem to apply it to my examples. My search is based on an sql query. ie.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;amp;lt;dashboard&amp;amp;gt;
  &amp;amp;lt;label&amp;amp;gt;Account Performance&amp;amp;lt;/label&amp;amp;gt;
  &amp;amp;lt;row&amp;amp;gt;
    &amp;amp;lt;panel&amp;amp;gt;
      &amp;amp;lt;table&amp;amp;gt;
        &amp;amp;lt;search&amp;amp;gt;
          &amp;amp;lt;query&amp;amp;gt;| dbquery AdWordsROI limit=1000 "select * from account_performance" |eval Cost="$".round(Cost/1000000,2) |eval CostPerConversion="$".round(CostPerConversion/1000000,2) |eval AverageCPC="$".round(AverageCPC/1000000,2) |eval AveragePosition=round(AveragePosition,2) |convert  timeformat="%d-%m-%y" ctime(Day)&amp;amp;lt;/query&amp;amp;gt;
          &amp;amp;lt;earliest&amp;amp;gt;&amp;amp;lt;/earliest&amp;amp;gt;
          &amp;amp;lt;latest&amp;amp;gt;&amp;amp;lt;/latest&amp;amp;gt;
        &amp;amp;lt;/search&amp;amp;gt;
      &amp;amp;lt;/table&amp;amp;gt;
     &amp;amp;lt;/panel&amp;amp;gt;
  &amp;amp;lt;/row&amp;amp;gt;
&amp;amp;lt;/dashboard&amp;amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I would like to have an item in a cell clicked on and have it perform another sql search and have the results displayed either on a seperate dashboard or on the same dashboard below the previous table&lt;/P&gt;

&lt;P&gt;thanks&lt;BR /&gt;
Hillary&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 10:30:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173227#M186569</guid>
      <dc:creator>BobKimata</dc:creator>
      <dc:date>2015-05-07T10:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I do a simple drill down from a table?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173228#M186570</link>
      <description>&lt;P&gt;Just want to make sure I understand. By default, each cell in a table is a clickable value, which will run a refined search using that value. So, for example, if my search is &lt;CODE&gt;index=_internal introspection | top 10 max_age&lt;/CODE&gt; and one of my result rows has a cell that shows a max_age value of 17, if I click the 17, then Splunk will run the following search: &lt;CODE&gt;index=_internal introspection  max_age=17&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;Are you asking how to click an item in a table cell and have it run an entirely new search, using a token that takes the value from that cell? You can use the &lt;CODE&gt;click.value&lt;/CODE&gt; token to achieve this, and the &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.3/Viz/Understandbasictableandchartdrilldownactions#Basic_contextual_drilldown_example" target="_blank"&gt;basic contextual drilldown example&lt;/A&gt; in the docs should show you how.&lt;/P&gt;

&lt;P&gt;You can also download the &lt;A href="https://splunkbase.splunk.com/app/1603/" target="_blank"&gt;Dashboard Examples&lt;/A&gt; app to see live examples of all these simple XML capabilities.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:46:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-do-a-simple-drill-down-from-a-table/m-p/173228#M186570</guid>
      <dc:creator>ChrisG</dc:creator>
      <dc:date>2020-09-28T19:46:10Z</dc:date>
    </item>
  </channel>
</rss>

