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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...