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!

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