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 May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...