Dashboards & Visualizations

Could create search message in multiselect filter

gemrose
Explorer

I am getting error "could not create search". How to fix this error ?

gemrose_0-1727695353081.png

xml::

<input type="multiselect" token="environment">
<label>Environments</label>
<choice value="cfp08">p08</choice>
<choice value="cfp07">p07</choice>
<choice value="*">ALL</choice>
<default>*</default>
<valuePrefix>environment =</valuePrefix>
<delimiter> OR </delimiter>
<search>
<query/>
</search>
<fieldForLabel>environment</fieldForLabel>
<fieldForValue>environment</fieldForValue>
</input>
Labels (1)
Tags (1)
0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

you haven't add any SPL for query there.

You could check and use Splunk Dashboard example app https://splunkbase.splunk.com/app/1603 for creating your own dashboards.

            <input type="multiselect" token="sourcetype_token" searchWhenChanged="true">
                <default>splunkd, splunk_web_service, splunkd_access</default>
                <!-- The final value will be surrounded by prefix and suffix -->
                <prefix>(</prefix>
                <suffix>)</suffix>
                <!-- Each value will be surrounded by the valuePrefix and valueSuffix -->
                <valuePrefix>sourcetype="</valuePrefix>
                <valueSuffix>"</valueSuffix>
                <!-- All the values and their valuePrefix and valueSuffix will be concatenated together with the delimiter between them -->
                <delimiter> OR </delimiter>
                <choice value="*">ALL</choice>
                <fieldForLabel>sourcetype</fieldForLabel>
                <fieldForValue>sourcetype</fieldForValue>
                <search>
                    <query>index=_internal | stats count by sourcetype</query>
                    <earliest>0</earliest>
                </search>
            </input>

Just add/modify <search><query>....</query></search> part into your form.

r. Ismo

0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...