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!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...