Splunk Search

How to condition match set tokens on input?

mcaulsc
Path Finder

Hi,
I seem to be having a mental block which maybe someone can help with.

I have an input dropdown which runs a query to populate values in the dropdown, depending on the value selected I want to set two more token. The condition match should be on the first 6 characters of the selected value, so if aaaaaa* set two new tokens and if aaaaab* set a different two. All tokens are then used in panels on the dashboard and should refresh each time the value in the dropdown is changed.

sample xml below that will hopefully give the idea.

<input type="dropdown" token="iptoken" searchWhenChanged="true">
<label>Apply Engine</label>
<fieldForLabel>value</fieldForLabel>
<fieldForValue>value</fieldForValue>
<search>
<query>index=ti-u_* sourcetype=$iptoken$ value=aaaaa** | table value |dedup value |sort value</query>
<earliest>@y</earliest>
<latest>now</latest>
</search>
<<change>
<condition match="$iptoken$==&quot;aaaaaa*&quot;">
<set token="newtoken1">newvalue1</set>
<set token="newtoken2">newvalue2</set>
</condition>
<condition match="$iptoken$==&quot;aaaaab*&quot;">
<set token="newtoken1">newvalue1</set>
<set token="newtoken2">newvalue2</set>
</condition>
</change>
</input>

thanks in advance

Labels (1)
0 Karma
1 Solution

somesoni2
SplunkTrust
SplunkTrust

Give this a try

<input type="dropdown" token="iptoken" searchWhenChanged="true">
      <label>Apply Engine</label>
      <fieldForLabel>value</fieldForLabel>
      <fieldForValue>value</fieldForValue>
      <search>
        <query>index=ti-u_* sourcetype=$iptoken$ value=aaaaa** | table value |dedup value |sort value</query>
        <earliest>@y</earliest>
        <latest>now</latest>
      </search>
      <change>
        <condition match=" like($iptoken$,&quot;aaaaaa%&quot;) ">
          <set token="newtoken1">newvalue11</set>
          <set token="newtoken2">newvalue2</set>
        </condition>
        <condition match=" like($iptoken$,&quot;aaaaab%&quot;) ">
          <set token="newtoken1">newvalue31</set>
          <set token="newtoken2">newvalue4</set>
        </condition>
      </change>

View solution in original post

somesoni2
SplunkTrust
SplunkTrust

Give this a try

<input type="dropdown" token="iptoken" searchWhenChanged="true">
      <label>Apply Engine</label>
      <fieldForLabel>value</fieldForLabel>
      <fieldForValue>value</fieldForValue>
      <search>
        <query>index=ti-u_* sourcetype=$iptoken$ value=aaaaa** | table value |dedup value |sort value</query>
        <earliest>@y</earliest>
        <latest>now</latest>
      </search>
      <change>
        <condition match=" like($iptoken$,&quot;aaaaaa%&quot;) ">
          <set token="newtoken1">newvalue11</set>
          <set token="newtoken2">newvalue2</set>
        </condition>
        <condition match=" like($iptoken$,&quot;aaaaab%&quot;) ">
          <set token="newtoken1">newvalue31</set>
          <set token="newtoken2">newvalue4</set>
        </condition>
      </change>

mcaulsc
Path Finder

Superb, been scratching my head on that one for a couple of hours.

Thanks for the solution.

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...