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!

Community Content Calendar, November Edition

Welcome to the November edition of our Community Spotlight! Each month, we dive into the Splunk Community to ...

October Community Champions: A Shoutout to Our Contributors!

As October comes to a close, we want to take a moment to celebrate the people who make the Splunk Community ...

Stay Connected: Your Guide to November Tech Talks, Office Hours, and Webinars!

What are Community Office Hours? Community Office Hours is an interactive 60-minute Zoom series where ...