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!

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