Dashboards & Visualizations

Is it possible to produce a dynamic search using token generated fields?

ryantodd
Engager

Hi there, is it possible to search using fields generated by token?

For example, I have a couple of fields:
1. roomtemp_apple_qty
2. chilled_apple_qty
3. roomtemp_orange_qty
4. chilled_orange_qty

I wish to be able to pass a $fruit$ token from my drop-down input in a dashboard and do something like this.

sourcetype=fruit_store | eval roomTempFieldName = "roomTemp" + $fruit$ + "_qty" | eval  chilledFieldName = "chilled_" $fruit$ + "_qty"| list avg(roomTempFieldName), avg(chilledFieldName)

somesoni2
Revered Legend

Did you try like this?

 sourcetype=fruit_store | list avg("roomTemp$fruit$_qty" ), avg("chilled_$fruit$_qty")

OR

 sourcetype=fruit_store | eval roomTempFieldName = [| gentimes start=-1 | eval search="roomTemp" + $fruit$ + "_qty" | table search] | eval  chilledFieldName = [| gentimes start=-1 | eval search="chilled_" $fruit$ + "_qty" | table search] | list avg(roomTempFieldName), avg(chilledFieldName)
0 Karma

rjthibod
Champion

You can probably do what you ask in some way using the $value$ token in a dropdown (see http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Access_labels_and_values_of_form_input...), but it may be more trouble than its worth. Instead, you can use the conditional elements to do it like the following.

<form>
  <fieldset submitButton="false">
    <input type="dropdown" token="fruittype">
      <label>Select a fruit type</label>
      <choice value="apple">Apples</choice>
      <choice value="orange">Oranges</choice>
      <change>
        <condition label="Apples">
          <set token="roomtemp_field">roomtemp_apple_qty</set>
          <set token="chilledtemp_field">chilled_apple_qty</set>
        </condition>
        <condition label="Oranges">
          <set token="roomtemp_field">roomtemp_orange_qty</set>
          <set token="chilledtemp_field">chilled_orange_qty</set>
        </condition>
      </change>
    </input>
  </fieldset>
  <row>
    <panel>
      <table>
        <search>
        <query>sourcetype=fruit_store | stats avg($roomtemp_field$) avg($chilledtemp_field$)</query>
        </search>
      </table>
    </panel>
  </row>
</form>
0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...