Dashboards & Visualizations

Token transfer between different dashboards using SplunkJS

MikeJu25
Path Finder

My source dashboard has a clickable table and once a user clicks a row the user will be taken to a destination dashboard and the token will be set to database_id which is then passed in to run a search on the destination dashboard. Now both two dashboards are using a single JS file. But I realized that the token will not be successfully passed in to the search as the token value is not set when the destination dashboard reads the JS file. Could someone please provide help on how should I transfer the token value between two dashboards using SplunkJS? Thank you in advance!

Here's the code for event handler on the source dashboard:

 

allassetstable.on("click", function(e) {
        // Bypass the default behavior
        e.preventDefault();
        // set token name and value
        tokenSet.set("databaseID_tok", e.data.click.value);
        // link back to asset-specific anomalies page
        utils.redirect("Ano","_blank"); 
    });

 

 

Below is the code for search on the destination dashboard:

 

    var search2 = new SearchManager({
        id: "ano",
        preview: true,
        cache: true,
        latest_time: "now",
        search: "index=anomalies database_id=$databaseID_tok$"
    }, {tokens: true});

 

 

 

Labels (3)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@MikeJu25 

Can you please try this?

allassetstable.on("click", function(e) {
    // Bypass the default behavior
    e.preventDefault();
    // set token name and value
    // tokenSet.set("databaseID_tok", e.data.click.value);
    // link back to asset-specific anomalies page
    utils.redirect("Ano?databaseID_tok="+e.data.click.value,"_blank"); 
});

 

Thanks
KV
▄︻̷̿┻̿═━一

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

View solution in original post

kamlesh_vaghela
SplunkTrust
SplunkTrust

@MikeJu25 

Can you please try this?

allassetstable.on("click", function(e) {
    // Bypass the default behavior
    e.preventDefault();
    // set token name and value
    // tokenSet.set("databaseID_tok", e.data.click.value);
    // link back to asset-specific anomalies page
    utils.redirect("Ano?databaseID_tok="+e.data.click.value,"_blank"); 
});

 

Thanks
KV
▄︻̷̿┻̿═━一

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...