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. 

thanks and best regards,
Sekar

PS - If this or any post helped you in any way, pls consider upvoting, thanks for reading !
0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...