Splunk Search

How to change the default behavior for checkboxes so it searches with OR for multiple selections, not AND?

brywilk_umich
Path Finder

Hi All,

The default behavior when building a dashboard with checkboxes is that the checkboxes equal an AND search. Is there a way to change the behavior to be OR?

For example, I have ten checkboxes index1 index2 index3....... When I do the checkboxes (and choose 2) the search comes out to be "index=1 index=7". I would like it to be "index=1 OR index=7"

thank you,
-Bryan

0 Karma
1 Solution

masonmorales
Influencer

Edit the SimpleXML for the checkbox input and change the delimiter to OR

<fieldset>
  <input type="checkbox" token="yourtoken">
    <choice value="1">One</choice>
    <choice value="2">Two</choice>
    <choice value="3">Three</choice>
    <delimiter> OR </delimiter>
    <prefix>(</prefix>
    <suffix>)</suffix>
    <valuePrefix>index="</valuePrefix>
    <valueSuffix>"</valueSuffix>
  </input>
</fieldset>

Docs: http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML

View solution in original post

masonmorales
Influencer

Edit the SimpleXML for the checkbox input and change the delimiter to OR

<fieldset>
  <input type="checkbox" token="yourtoken">
    <choice value="1">One</choice>
    <choice value="2">Two</choice>
    <choice value="3">Three</choice>
    <delimiter> OR </delimiter>
    <prefix>(</prefix>
    <suffix>)</suffix>
    <valuePrefix>index="</valuePrefix>
    <valueSuffix>"</valueSuffix>
  </input>
</fieldset>

Docs: http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML

Get Updates on the Splunk Community!

Combine Multiline Logs into a Single Event with SOCK - a Guide for Advanced Users

This article is the continuation of the “Combine multiline logs into a single event with SOCK - a step-by-step ...

Everything Community at .conf24!

You may have seen mention of the .conf Community Zone 'round these parts and found yourself wondering what ...

Index This | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...