Dashboards & Visualizations

Setting token programatically when token has selectFirstChoice=true

delewis13
Explorer

Setting tokens in Splunk programatically in Splunk via JS is pretty easy, as documented at:

https://dev.splunk.com/enterprise/docs/developapps/webframework/binddatausingtokens/getandsettokenva...

However, the code snippet at that link appears to have no effect on tokens with true

I have developed the following workaround...

require([
  "underscore",
  "jquery",
  "splunkjs/mvc",
  "splunkjs/mvc/simplexml/ready!"
], function (_, $, mvc) {
  var tokens = mvc.Components.get("default");
  var tokenName = "myTokenName";
  var tokenValue = "myTokenValue";

  tokens._events[`change:${myTokenName}`][0].context.attributes.selectFirstChoice = false

  tokens.set(myTokenName, myTokenValue);
});

Evidently however, this is a hack, as it reaches into the _events attribute which is marked as not a public API.
Thus, I would like a more elegant solution. Any ideas?

Cheers 🙂

Labels (1)

rvany
Communicator

@delewis13 could you please paste your corresponding dashboard code?

0 Karma

anmolpatel
Builder

@delewis13 not a direct answer to the question, though have a look at this app: Splunk Dev For All
https://splunkbase.splunk.com/app/4104/

It has a good walkthrough no how to use JS with Splunk to do this sort of task.

0 Karma
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

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 GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...