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!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...