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!

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

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...