Could get drilldown working using small js script mentioned in the URL - https://answers.splunk.com/answers/471329/is-it-possible-to-drilldown-from-an-status-indicat.html
All you need to do is follow below 3 steps:
create a JavaScript file in your app folder: $SPLUNK_HOME/etc/apps//appserver/static/drilldown.js
Content to be included in js file:
var components = [
"splunkjs/ready!",
"splunkjs/mvc/simplexml/ready!",
"jquery"
];
// Require the components
require(components, function(
mvc,
ignored,
$
) {
$('#clickable').click(function() {
window.open(
'<Your_dashboard_link>',
'_blank' // <- This is what makes it open in a new window.
);
});
});
Including js in your dashboard or form as appropriate.
Example:
dashboard script="drilldown.js" stylesheet="trafficlight.css" OR
form script="drilldown.js" stylesheet="trafficlight.css"
Add unique id to the panel in XML
panel id="clickable"
After making the changes restart the servers. Clear the cache from the browser before loading the application.
you can also use the _bump url to bust the cache for you:
https://your_splunk_url/en-US/_bump
... View more