Splunk Enterprise

Can I set individual tokens for both the fieldForValue and fieldForLabel?

wcooper003
Communicator

I want to have a token for both the form input value and label fields which differ (fieldForValue, fieldForLabel), is it possible to do this? Or is there a way to access the label from a token (e.g., $token.label$ which I realize doesn't work, but similar to $time.earliest$)?

Here's what I'm doing manually right now, but I don't want to have to have to add new conditions every time I update the lookup, which will grow quickly.

    <input type="dropdown" token="service">
      <label>Select a Service:</label>
      <fieldForLabel>Domains</fieldForLabel>
      <fieldForValue>AFFECTED_ITEM_STRING</fieldForValue>
      <search>
        <query>| inputlookup domain_report.csv | table *</query>
      </search>
      <initialValue>*aura*</initialValue>
       <change>
         <condition label="Service1">
           <set token="service_nm">Service1</set>
         </condition>
         <condition label="Service2">
           <set token="service_nm">Service2</set>
         </condition>
       </change>
    </input>

Thanks

Tags (1)
0 Karma
1 Solution

alacercogitatus
SplunkTrust
SplunkTrust

Yes! The exact thing you want is here: http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Access_labels_and_values_of_form_input...

<change>
    <set token="service_nm">$label$</set>
    <set token="service_val">$value$</set>
</change>

View solution in original post

alacercogitatus
SplunkTrust
SplunkTrust

Yes! The exact thing you want is here: http://docs.splunk.com/Documentation/Splunk/latest/Viz/tokens#Access_labels_and_values_of_form_input...

<change>
    <set token="service_nm">$label$</set>
    <set token="service_val">$value$</set>
</change>

wcooper003
Communicator

Excellent thank you!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...