Dashboards & Visualizations

How to make Splunkjs use variable in SearchManager search?

sboogaar
Path Finder

In one of our dashboard we have a table with a custom action, When the user clicks on a field we check if it is the delete field and if so get the name of the field we want to delete.

We can put it in a javascript variable.

We also have a search that needs to use this variable.

Something like: where someVariable is update in a function.

 

    
var someVariable = ""
var validateChannelCanBeDeletedSearch = new SearchManager({
 id: "validate something",
 autostart: false,
 search: `| inputlookup some
| search some_field="${someVariable}"`
});

 Later we manually trigger the search. The problem is that the update value of someVariable is not used in the query. How can we make it use the updated value.

Labels (1)
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@sboogaar 

if someVariable is a javascript variable then try this.

var someVariable = "";
var validateChannelCanBeDeletedSearch = new SearchManager({
    id: "validate something",
    autostart: false,
    search: '| inputlookup some | search some_field="'+someVariable+'"' // someVariable is javascript variable
}, { tokens: true, tokenNamespace: "submitted" });

 

if someVariable is token then try this

 

var validateChannelCanBeDeletedSearch = new SearchManager({
    id: "validate something",
    autostart: false,
    search: '| inputlookup some | search some_field="$someVariable$"' // someVariable is token
}, { tokens: true, tokenNamespace: "submitted" });

 

to trigger search execution use the below line of code.

// execute below code in any event
validateChannelCanBeDeletedSearch.startSearch();

I hope this will help you.

Thanks
KV
If any of my replies help you to solve the problem Or gain knowledge, an upvote would be appreciated.

 

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...