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!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

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 ...