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!

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had 3 releases of new security content via the Enterprise Security ...

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...