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!

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