Dashboards & Visualizations

Splunk variable substitutions in fieldsets work randomly - race conditions

kbhit
Engager

Can anyone come up with an explanation of why sometimes the "source" is correct (eg. my-myapp-qa) but many times its not formatted (my-$service$-qa)?

 <fieldset autoRun="true" submitButton="true">
    <input type="dropdown" token="service" searchWhenChanged="false">
      <label>Service</label>
      <choice value="myapp">myapp</choice>
      <choice value="otherapp">otherapp</choice>
      <default>myapp</default>
      <change>
        <condition value="deals">
          <set token="status_url">/dac/api/healthcheck</set>
        </condition>
      </change>
    </input>
    <input type="dropdown" token="environment" searchWhenChanged="false">
      <label>Environment</label>
      <choice value="qa">qa</choice>
      <choice value="dev">dev</choice>
      <choice value="ppe">ppe</choice>
      <choice value="prod">prod</choice>
      <default>ppe</default>
      <change>
        <condition value="qa">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="source">*my-$service$-qa*</set>
        </condition>
        <condition value="dev">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="source">*my-$service$-dev*</set>
        </condition>
      </change>
    </input>
</fieldset>
0 Karma
1 Solution

vnravikumar
Champion

Hi @kbhit

You are cascading dropdowns, the second one depends on first dropdown. So it is better to reset the second dropdown when you change the first one.

<form>
  <label>demo</label>
  <fieldset autoRun="true" submitButton="true">
    <input type="dropdown" token="service" searchWhenChanged="true">
      <label>Service</label>
      <choice value="myapp">myapp</choice>
      <choice value="otherapp">otherapp</choice>
      <default>myapp</default>
      <change>
        <condition value="deals">
          <set token="status_url">/dac/api/healthcheck</set>
        </condition>
        <condition>
          <unset token="form.environment"></unset>
          <unset token="form.source"></unset>
        </condition>
      </change>
    </input>
    <input type="dropdown" token="environment" searchWhenChanged="true">
      <label>Environment</label>
      <choice value="qa">qa</choice>
      <choice value="dev">dev</choice>
      <choice value="ppe">ppe</choice>
      <choice value="prod">prod</choice>
      <default>ppe</default>
      <change>
        <condition value="qa">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="form.source">*my-$service$-qa*</set>
        </condition>
        <condition value="dev">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="form.source">*my-$service$-dev*</set>
        </condition>
      </change>
    </input>
    <input type="text" token="source">Source</input>
  </fieldset>
</form>

View solution in original post

vnravikumar
Champion

Hi @kbhit

You are cascading dropdowns, the second one depends on first dropdown. So it is better to reset the second dropdown when you change the first one.

<form>
  <label>demo</label>
  <fieldset autoRun="true" submitButton="true">
    <input type="dropdown" token="service" searchWhenChanged="true">
      <label>Service</label>
      <choice value="myapp">myapp</choice>
      <choice value="otherapp">otherapp</choice>
      <default>myapp</default>
      <change>
        <condition value="deals">
          <set token="status_url">/dac/api/healthcheck</set>
        </condition>
        <condition>
          <unset token="form.environment"></unset>
          <unset token="form.source"></unset>
        </condition>
      </change>
    </input>
    <input type="dropdown" token="environment" searchWhenChanged="true">
      <label>Environment</label>
      <choice value="qa">qa</choice>
      <choice value="dev">dev</choice>
      <choice value="ppe">ppe</choice>
      <choice value="prod">prod</choice>
      <default>ppe</default>
      <change>
        <condition value="qa">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="form.source">*my-$service$-qa*</set>
        </condition>
        <condition value="dev">
          <set token="index">myindex</set>
          <set token="sourcetype">kubernetes-dev</set>
          <set token="form.source">*my-$service$-dev*</set>
        </condition>
      </change>
    </input>
    <input type="text" token="source">Source</input>
  </fieldset>
</form>
Get Updates on the Splunk Community!

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...

[Live Demo] Watch SOC transformation in action with the reimagined Splunk Enterprise ...

Overwhelmed SOC? Splunk ES Has Your Back Tool sprawl, alert fatigue, and endless context switching are making ...

What’s New & Next in Splunk SOAR

Security teams today are dealing with more alerts, more tools, and more pressure than ever.  Join us on ...