Dashboards & Visualizations

Use Renamed Fields in Dashboard Drilldown to Form

Yorokobi
SplunkTrust
SplunkTrust

Is there a way to use a renamed field as part of the $row.fieldname$ variable?

Take the following single panel dashboard:

<dashboard>
    <label>Temp</label>
    <row>
      <table>
        <searchString>index=temp | stats count by application_id application_name environment log_type log_level | sort -count</searchString>
        <earliestTime>-24h@h</earliestTime>
        <drilldown>
          <link>/app/search/temp2?form.app_id=$row.application_id$</link>
        </drilldown>
      </table>
    </row>
  </dashboard>

Which links to a similar single panel dashboard:

<form>
    <label>Temp2</label>
     <fieldset autoRun="true">
   <input type="text" token="app_id">
  <label>Enter an Application ID:</label>
  <default>*</default>
  </input>
  </fieldset>
    <row>
      <table>
        <searchString>index=temp application_id=$app_id$ | stats count by application_id application_name environment log_type log_level | sort -count</searchString>
        <earliestTime>-24h@h</earliestTime>
      </table>
    </row>
  </form>

However, if I change the first dashboard's search to include | rename application_id AS "Application ID" so the dashboard table has better visual appeal, I cannot use $row.application_id$; the value to pass to the second dashboard has changed to "Application ID" and $row."Application ID"$ does not work, either. Is there a way to have the table for the first dashboard use renamed fields but still pass the row's application_id with $row.fieldname$ or similar?

Using Simple XML and Splunk 6.0.1

Tags (2)
1 Solution

somesoni2
Revered Legend

Instead of using $row."Application ID"$ , directly use $row.Application ID$. This works fine

View solution in original post

somesoni2
Revered Legend

Instead of using $row."Application ID"$ , directly use $row.Application ID$. This works fine

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