<?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 Conditional drilldown in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546684#M154981</link>
    <description>&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;I have a table(panel 1) with the below columns..&lt;/P&gt;&lt;P&gt;Col_A Col_B&lt;/P&gt;&lt;P&gt;And based on the values of Col_B i will have to create a conditional drilldown(for panel 2)&lt;/P&gt;&lt;P&gt;But my requirement is that Col_B should be hidden in panel 1..that is,I want to have only Col_A in the panel 1&lt;/P&gt;&lt;P&gt;How do i do that.&lt;/P&gt;&lt;P&gt;Please assist&lt;/P&gt;</description>
    <pubDate>Mon, 05 Apr 2021 09:42:59 GMT</pubDate>
    <dc:creator>prettysunshinez</dc:creator>
    <dc:date>2021-04-05T09:42:59Z</dc:date>
    <item>
      <title>Conditional drilldown</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546684#M154981</link>
      <description>&lt;P&gt;Hi..&lt;/P&gt;&lt;P&gt;I have a table(panel 1) with the below columns..&lt;/P&gt;&lt;P&gt;Col_A Col_B&lt;/P&gt;&lt;P&gt;And based on the values of Col_B i will have to create a conditional drilldown(for panel 2)&lt;/P&gt;&lt;P&gt;But my requirement is that Col_B should be hidden in panel 1..that is,I want to have only Col_A in the panel 1&lt;/P&gt;&lt;P&gt;How do i do that.&lt;/P&gt;&lt;P&gt;Please assist&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 09:42:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546684#M154981</guid>
      <dc:creator>prettysunshinez</dc:creator>
      <dc:date>2021-04-05T09:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional drilldown</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546687#M154982</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213901"&gt;@prettysunshinez&lt;/a&gt;&amp;nbsp;... We can have a full panel as hidden. We can not hide one or two columns alone(as per my knowledge).&lt;/P&gt;&lt;P&gt;Even if there are some ways to hide the column, how can you implement drilldown on that panel which is hidden?!?!..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you explain your situation more clearly, there should be some other ways to solve this issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 09:50:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546687#M154982</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2021-04-05T09:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Conditional drilldown</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546691#M154984</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213901"&gt;@prettysunshinez&lt;/a&gt;&amp;nbsp;(and&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/80737"&gt;@inventsekar&lt;/a&gt;&amp;nbsp;) You can hide columns with CSS - the data is still there for the drilldown to use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;  &amp;lt;row&amp;gt;
    &amp;lt;panel depends="$stayhidden$"&amp;gt;
      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
          #twocolumns th:nth-child(2),
          #twocolumns td:nth-child(2){
            display: none;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table id="twocolumns"&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval _raw="Col_A,Col_B
a1,b1
a2,b2"
| multikv forceheader=1
| fields - _time _raw linecount&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;cell&amp;lt;/option&amp;gt;
        &amp;lt;drilldown&amp;gt;
          &amp;lt;set token="selected_b"&amp;gt;$row.Col_B$&amp;lt;/set&amp;gt;
        &amp;lt;/drilldown&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;| makeresults | eval _raw="Col_B,Col_C
b1,c1
b2,c2"
| multikv forceheader=1 
| where Col_B="$selected_b$"
| fields - _time _raw linecount&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Apr 2021 10:19:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Conditional-drilldown/m-p/546691#M154984</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2021-04-05T10:19:02Z</dc:date>
    </item>
  </channel>
</rss>

