Splunk Search

How to update a search after setting token value?

chaninphx
Path Finder

Hi, I'm very new to Splunk. I'm trying to implement a reset button that will update the token value text_name to have an empty string value. However the startSearch function will just run the previous search from before without the updated token value. Is there a way to work around this?

$("#reset_button").click(function(){
            var tokens = mvc.Components.get("default");
            //console.log(tokens.get("text_name"));
            var searchObj2 = mvc.Components.getInstance("search2");
            tokens.set("text_name", "");
            searchObj2.startSearch();
        });
0 Karma
1 Solution

rjthibod
Champion

You probably need to use the "submitted" token model instead of "default".

var tokens = mvc.Components.get('submitted');

View solution in original post

0 Karma

rjthibod
Champion

You probably need to use the "submitted" token model instead of "default".

var tokens = mvc.Components.get('submitted');

0 Karma

chaninphx
Path Finder

Awesome! Thank you!

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