Dashboards & Visualizations

URL in dashboard

nandipatisunil
Path Finder

I have a text which is a URL. I am grouping my results and showing in a dashboard.

sourcetype="xyz" | stats count by AppName, URL

Now when I click on the URL, i want it to redirect to that specific URL page either in the same or new window.
How do I mention the link in my XML?

Lets say I have www.google.com on my URL field value ... when i click it ... i want google to be opened.

Tags (4)
0 Karma

aelliott
Motivator

Well here is how i did it through Javascript
I simply use jquery .on to say if what they clicked on in the detail table is myfirstfield, then open the value which is the URL etc, i use Window.Open and pass a name of the window so they don't open a million popups.

splunkjs.mvc.Components.getInstance("example-table-detail").on("click", function (e) {
if(e.field === "Values"){

if(e.data["click.value"] === "MyFirstField")  
{
    if(e.data["click.value2"] != "" && e.data["click.value2"] != null ){
    window.open(e.data["click.value2"],"NameOfWindow");}
}

if(e.data["click.value"] === "MySecondField"){
    if(e.data["click.value2"] != "" && e.data["click.value2"] != null ){
    window.open(e.data["click.value2"],"NameOfWindowTwo");}
}

}
 });

jtrucks
Splunk Employee
Splunk Employee

You may have to look at using the API to build your own dashboard with clickable links like that. Any of the SDK options or the REST API will do that quite nicely for you.

--
Jesse Trucks
Minister of Magic
0 Karma

aelliott
Motivator

posted an example above

0 Karma

nandipatisunil
Path Finder

Thanks jtrucks.
aelliott ... can you give me more info.

0 Karma

jtrucks
Splunk Employee
Splunk Employee

You should answer in more detail as a separate answer to help the original poster!

--
Jesse Trucks
Minister of Magic
0 Karma

aelliott
Motivator

I have this functionality in an app I just created. I used SplunkJS to accomplish using the Web Framework, you can intercept the click and call javascript to open a new window.

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...