Dashboards & Visualizations

How to specify an or clause to display a panel

kikiBen12
Engager

Hi,

I have a panel in an xml dashboard and 2 dropdown inputs that are populated by a search and have a value corresponding to none which is the default value.

I want to display the panel if at least one of the input have a different value than the default.
I have made a token for each input which is set when a value different from none is selected and unset when the default value is chosen.

I have thought at the depends attribute to a panel to which I pass my 2 tokens. But the problem is that the depends attribute is performing an AND clause to the tokens given. The thing I want is an OR clause to the depends attribute or an AND clause to the rejects attribute.

Anyone as an idea to resolve this problem ?

Tags (3)
0 Karma
1 Solution

niketn
Legend

Without XML snippet it would be tough, but let me try

Assuming two dropdown as field1 and field2, you can code the following change event

For field1 dropdown

  <change>
     <condition match"$value$==&quot;none&quot; AND $field2$==&quot;none&quot;">
         <unset token="hidePanel"></unset>
     </condition>
     <condition>
         <set token="hidePanel">true</set>
     </condition>
  </change>

For field2 dropdown

  <change>
     <condition match"$value$==&quot;none&quot; AND $field1$==&quot;none&quot;">
         <unset token="hidePanel"></unset>
     </condition>
     <condition>
         <set token="hidePanel">true</set>
     </condition>
  </change>

Then use hidePanel in for the panel as depends token.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

View solution in original post

niketn
Legend

Without XML snippet it would be tough, but let me try

Assuming two dropdown as field1 and field2, you can code the following change event

For field1 dropdown

  <change>
     <condition match"$value$==&quot;none&quot; AND $field2$==&quot;none&quot;">
         <unset token="hidePanel"></unset>
     </condition>
     <condition>
         <set token="hidePanel">true</set>
     </condition>
  </change>

For field2 dropdown

  <change>
     <condition match"$value$==&quot;none&quot; AND $field1$==&quot;none&quot;">
         <unset token="hidePanel"></unset>
     </condition>
     <condition>
         <set token="hidePanel">true</set>
     </condition>
  </change>

Then use hidePanel in for the panel as depends token.

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"

kikiBen12
Engager

Thanks it help me so much ! I didn't think about doing think like this

0 Karma

niketn
Legend

@kikiBen12... Glad this one worked for you 🙂

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

rjthibod
Champion

It is probably easier and more efficient to get a clear answer if you can share the actual XML.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...