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!

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