Dashboards & Visualizations

How to hide cloumns in the table the basis of multiselect choices?

snehal
Loves-to-Learn Lots

Hi Team, How to hide cloumns in the table the basis of multiselect choices?
For example, I have options in multiselect , Critical, high,medium and Low. When i select high and low from multiselect, critical and low column should be hide from table.Only I need to show High and low column and there respective total in table.
Please give me solution on this.Thank you

Labels (2)
0 Karma

jhanvidattani
Path Finder

@snehal 
We can implement this thing by making use of Splunk tokens. Can you refer to below sample code?

 

<form>
  <label>Sample Dashboard</label>
  <fieldset submitButton="false">
    <input type="time" token="time_token">
      <label>Time range</label>
      <default>
        <earliest>-15m</earliest>
        <latest>now</latest>
      </default>
    </input>
    <input type="multiselect" token="severity_token">
      <label>Select Severity</label>
      <choice value="critical">critical</choice>
      <choice value="high">high</choice>
      <choice value="low">low</choice>
      <choice value="medium">medium</choice>
      <initialValue>critical</initialValue>
      <delimiter>,</delimiter>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <title>My Table</title>
        <search>
          <query>index="_internal" | rename date_hour as high | rename date_month as low | rename date_year as critical | rename date_zone as medium | dedup $severity_token$ | table $severity_token$</query>
          <earliest>$time_token.earliest$</earliest>
          <latest>$time_token.latest$</latest>
        </search>
        <option name="drilldown">none</option>
        <option name="count">10</option>
        <option name="refresh.display">progressbar</option>
      </table>
    </panel>
  </row>
</form>

 

If you find my solution fruitful, then an upvote would be appreciated.

 

 

Get Updates on the Splunk Community!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...