Dashboards & Visualizations

How do I consume tokens from the URL?

allan_newton
Path Finder

Hi,

I have a scenario where I have to consume tokens for my searches in the dashboard from the URL. I'm doing the dashboard building in HTML + javascript, say tokens are separated by "=" symbol.

Please help.

Tags (3)
0 Karma
1 Solution

thirumalreddyb
Communicator

I was discussing the same with a friend of mine a couple of hours back. I told him to consume the url and extract your fields. Below is the code for that.

Url = {
        get get(){
        var vars= {};
        if(window.location.href.length!==0)
            window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value){
                key=decodeURIComponent(key);
                if(typeof vars[key]==="undefined") {vars[key]= decodeURIComponent(value);}
                else {vars[key]= [].concat(vars[key], decodeURIComponent(value));}
            });
        return vars;
    }

Now you have all the fields and values. Store them into variables or concat them directly into search strings in your search manager as +Url.get.fieldname+

Hope this will serve you purpose.

View solution in original post

thirumalreddyb
Communicator

I was discussing the same with a friend of mine a couple of hours back. I told him to consume the url and extract your fields. Below is the code for that.

Url = {
        get get(){
        var vars= {};
        if(window.location.href.length!==0)
            window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi, function(m,key,value){
                key=decodeURIComponent(key);
                if(typeof vars[key]==="undefined") {vars[key]= decodeURIComponent(value);}
                else {vars[key]= [].concat(vars[key], decodeURIComponent(value));}
            });
        return vars;
    }

Now you have all the fields and values. Store them into variables or concat them directly into search strings in your search manager as +Url.get.fieldname+

Hope this will serve you purpose.

allan_newton
Path Finder

Worked like abraca dabra! Thank you.

0 Karma

jeffland
SplunkTrust
SplunkTrust

You simply use them on the second dashboard as you would on the first where you create them, splunk takes care of the magic behind that. This page should help you out further.

0 Karma
Get Updates on the Splunk Community!

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

🍂 Fall into November with a fresh lineup of Community Office Hours, Tech Talks, and Webinars we’ve ...

Transform your security operations with Splunk Enterprise Security

Hi Splunk Community, Splunk Platform has set a great foundation for your security operations. With the ...

Splunk Admins and App Developers | Earn a $35 gift card!

Splunk, in collaboration with ESG (Enterprise Strategy Group) by TechTarget, is excited to announce a ...