Dashboards & Visualizations

Token reference works in panel title but same reference fails in Dashoboard label

Vebloud
Explorer

I am using token cc in dashboard panel title and it is working. Same token in dashboard label is not working. What am I doing wrong?
My code:

<dashboard stylesheet="my_style.css">&gt;<label>Daily Country Dashboard $cc$</label>
  <description>This is a testing dashboard for every country</description>
  <row>
    <panel>
      <title>Input $cc$</title>
      <single>
        <search>

alt text

0 Karma

vnravikumar
Champion

Hi

I tried a small example with js, Hope it will help you.

<dashboard script="rk.js">
  <label>Total values:</label>
  <row>
    <panel>
      <table>
        <search>
          <query>index="_internal" |stats count</query>
          <earliest>-24h@h</earliest>
          <latest>now</latest>
          <done>
            <set token="count">$result.count$</set>
          </done>
        </search>
        <option name="drilldown">none</option>
      </table>
    </panel>
  </row>
</dashboard>

Js:

require([
     "splunkjs/mvc",
     "splunkjs/mvc/simplexml/ready!",
 ], function(mvc) {
     $(document).ready(function () {
         var title = $('h2[data-view="views/dashboard/header/Title"]').text();
         var defaultTokenModel = mvc.Components.get("default");
         defaultTokenModel.on("change:count", function(newTokenName, count, options) {
         var temp = title +" " + count;
         $('h2[data-view="views/dashboard/header/Title"]').text(temp)
          });
     });
 });
0 Karma

vnravikumar
Champion
0 Karma
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 ...