Splunk Search

Conditional drilldown

prettysunshinez
Explorer

Hi..

I have a table(panel 1) with the below columns..

Col_A Col_B

And based on the values of Col_B i will have to create a conditional drilldown(for panel 2)

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

How do i do that.

Please assist

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

@prettysunshinez (and @inventsekar ) You can hide columns with CSS - the data is still there for the drilldown to use.

 

  <row>
    <panel depends="$stayhidden$">
      <html>
        <style>
          #twocolumns th:nth-child(2),
          #twocolumns td:nth-child(2){
            display: none;
          }
        </style>
      </html>
    </panel>
    <panel>
      <table id="twocolumns">
        <search>
          <query>| makeresults | eval _raw="Col_A,Col_B
a1,b1
a2,b2"
| multikv forceheader=1
| fields - _time _raw linecount</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">cell</option>
        <drilldown>
          <set token="selected_b">$row.Col_B$</set>
        </drilldown>
      </table>
    </panel>
    <panel>
      <table>
        <search>
          <query>| makeresults | eval _raw="Col_B,Col_C
b1,c1
b2,c2"
| multikv forceheader=1 
| where Col_B="$selected_b$"
| fields - _time _raw linecount</query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>

 

0 Karma

inventsekar
SplunkTrust
SplunkTrust

Hi @prettysunshinez ... We can have a full panel as hidden. We can not hide one or two columns alone(as per my knowledge).

Even if there are some ways to hide the column, how can you implement drilldown on that panel which is hidden?!?!.. 

 

If you explain your situation more clearly, there should be some other ways to solve this issue. 

0 Karma
Get Updates on the Splunk Community!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...