Getting Data In

How to filter data by multiselect

quintessence
New Member

I'm trying to use multiselect for filtering my charts data:

search "msg.mdc.headers.consumer{}"=$consumer$

, where $consumer$ is my multiselect token.
But when I have multiple values selected (val1, val2) - the search doesn't work.

0 Karma

vnravikumar
Champion

Hi

Check this sample and try with valuePrefix , valueSuffix and delimiter

<form>
  <label>multiselect</label>
  <fieldset submitButton="false">
    <input type="multiselect" token="sourcetype">
      <label>Source Type</label>
      <valuePrefix>(sourcetype=</valuePrefix>
      <valueSuffix>)</valueSuffix>
      <delimiter> OR </delimiter>
      <fieldForLabel>sourcetype</fieldForLabel>
      <fieldForValue>sourcetype</fieldForValue>
      <search>
        <query>index=_internal |stats count by sourcetype</query>
        <earliest>-24h@h</earliest>
        <latest>now</latest>
      </search>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
          <query>index=_internal $sourcetype$</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</form>
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...