Dashboards & Visualizations

Double Dollar in Dropdown

hogan24
Path Finder

Using an Input to as a variable in another input....

<input type="dropdown" token="INPUT_4" searchWhenChanged="true">
  <label>Input Variable:</label>
  <search>
    <query>index=indexName sourcetype=sourcetypeName | top limit=100 $INPUT_3$ | sort $INPUT_3$</query>
    <earliest>-3d@d</earliest>
    <latest>@d</latest>
  </search>
  <fieldForLabel>$INPUT_3$</fieldForLabel>
  <fieldForValue>$INPUT_3$</fieldForValue>
</input>

Each time I reload the dashboard, I keep getting double dollar signs around my Label and Value fields. How can I prevent this from occurring? (Splunk Version 6.3.0)

  <fieldForLabel>$$INPUT_3$$</fieldForLabel>
  <fieldForValue>$$INPUT_3$$</fieldForValue>
Tags (2)
0 Karma

jbjerke_splunk
Splunk Employee
Splunk Employee

Hi hogan24

The dollar sign is reserved for tokens in Splunk. You can either escape it using the corresponding html entitiy in the and the tags or simply rename the field in your search:

index=indexName sourcetype=sourcetypeName | top limit=100 $INPUT_3$ | rename $INPUT_3$ AS INPUT_3 | sort INPUT_3

 <fieldForLabel>INPUT_3</fieldForLabel>
 <fieldForValue>INPUT_3</fieldForValue>

Let me know how you get along.

j

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