Hi Splunk colleagues,
I'm having a problem with multiselect in my dashboards. Here's the code of the multiselect:
<input type="multiselect" token="bap" searchWhenChanged="false">
<label>BAP</label>
<fieldForLabel>BAP</fieldForLabel>
<fieldForValue>BAP</fieldForValue>
<search base="base">
<query>| search BAP IN("$form.bap$") | dedup BAP | table BAP</query>
</search>
<valuePrefix>"</valuePrefix>
<valueSuffix>"</valueSuffix>
<delimiter>,</delimiter>
<choice value="*">Todos</choice>
<prefix>(</prefix>
<suffix>)</suffix>
</input>
The thing is that if I pass information through this token (form.bap) the value's prefix and suffix are not appearing and my searches are returning no results. This is how I look for the information in the token on my searches:
| search BAP IN("$form.bap$")
And this is how it appears (in this case, the values that I'm selecting are "BI" and "Core"):
| search BAP IN ("BI,Core")
As you can see, no quotes are added in between the two values, therefore no results found. I tried to change the way that I use to look for the information of the token (just with | search $form.bap$ and adding the "BAP IN" part on the prefix) but it's not working either.
If you need more information about this or if the explanation is not as clear as possible, let me know!
Thanks in advance,
... View more