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 the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...