Dashboards & Visualizations

Splunk button javascript unset token- Is there a method to unset the splunk's token after the page refresh?

maurobissante
Explorer

Hi,

I have a button that take values from splunk's tokens, launch a search that update a KV Store and refresh the page.

Is there a method to unset the splunk's token after the page refresh?

I tried with the "tokens.unset("name of the token", null);" command in javascript but this method didn't work for me.

I took all the tokens with this command "var tokens = mvc.Components.get("default");"

Thanks,

Mauro

Labels (2)
0 Karma

niketn
Legend

How are you currently updating your KV Store or refreshing the page through JS? One of those can have the code to unset the token.

Also unset token code is something like the following:

tokens.unset("yourTokenName");

Besides depending on your use case you may want to unset both default and submitted token model. Further, you would need to ensure that unsetting the token does not trigger unwanted execution of token change event which you may already have.

 

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

maurobissante
Explorer

In JS with the button I submit a search that update the KVStore and refresh the page.

The token came from an input fields where I set the new values of the KVStore.

After the refresh I try to unset the token.

The problem is that, after the refresh, the input fields remain full of the value of the token, instead of blank inputs.

I tried to use your command before the window.location.reload(); but it didn't work and the input form remained with the old values.

Thanks,

Mauro

0 Karma

tmurata_splunk
Splunk Employee
Splunk Employee

Try the code below to change the selection of your input.

        function unsetToken(name) {
            defaultTokenModelun.unset(name);
            submittedTokenModelun.unset(name);
        }
        unsetToken("form.TEXT_FIELD")
0 Karma
Get Updates on the Splunk Community!

Archived Metrics Now Available for APAC and EMEA realms

We’re excited to announce the launch of Archived Metrics in Splunk Infrastructure Monitoring for our customers ...

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Dashboard Challenge and Watch the .conf24 Global Broadcast!

The Splunk Community Dashboard Challenge is still happening, and it's not too late to enter for the week of ...