Dashboards & Visualizations

Splunk Dashboards Hyperlink

colinmchugo
Explorer

Hi

Ive a dashboard with 8 search fields, when the user inputs their search criteria such as an IP address this will produce a pie chart summary then a table showing that data across a number of data sets.

The issue is there is pages of tables and imagery so id like to have it that when the user searches on a field they could hit a hyper link that would jump to where that table ie e.g. 2 pages down is there a way of doing that?

thanks

Colin

0 Karma

rjthibod
Champion

This is only possible with a JavaScript extension. You would have to listen for the changes to the input elements, and then knowing which chart/table element is associated with the element, use the scrollIntoView function.

Here is how I wrap the my own function for scrolling to an element.

function scrollTo(eleID, setting) {
  var e = document.getElementById(eleID);
  if (!!e && e.scrollIntoView) {
    e.scrollIntoView(setting);
  }
}
0 Karma
Get Updates on the Splunk Community!

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...