<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is it possible to drilldown from an Status Indicator icon? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210888#M13183</link>
    <description>&lt;P&gt;Sure, why not.. Please do create a new question next time, that makes it easier for other people to find the answer as well &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;In the JavaScript section add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;var submitted_tokens = mvc.Components.get('submitted');

$('#something').click(function() {
    submitted_tokens.set('YOURTOKEN', 'SOME-VALUE');
});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 06 Feb 2017 09:02:36 GMT</pubDate>
    <dc:creator>gwobben</dc:creator>
    <dc:date>2017-02-06T09:02:36Z</dc:date>
    <item>
      <title>Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210882#M13177</link>
      <description>&lt;P&gt;Hello Splunkers,&lt;/P&gt;

&lt;P&gt;I have a monitoring dashboard that uses Status Indicator in the panels:&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2105i3E6B91C6F124C37B/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;BR /&gt;
Is it possible to configure a drilldown to another dashboard when clicking on the icon?&lt;BR /&gt;
I don't need to pass any token, just redirect to another dashboard.&lt;/P&gt;

&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 09:53:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210882#M13177</guid>
      <dc:creator>guimilare</dc:creator>
      <dc:date>2016-11-04T09:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210883#M13178</link>
      <description>&lt;P&gt;No that's not possible... HOWEVER! This little hack in JavaScript does work.&lt;/P&gt;

&lt;P&gt;First Add an id to the panel in XML&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel id="something"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then create a JavaScript file in your app folder: &lt;CODE&gt;$SPLUNK_HOME/etc/apps/&amp;lt;your app&amp;gt;/appserver/static/drilldown.js&lt;/CODE&gt;. Include the drilldown file in your dashboard like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard script="drilldown.js"&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Add the following to the JavaScript file:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;// Components to require
var components = [
    "splunkjs/ready!",
    "splunkjs/mvc/simplexml/ready!",
    "jquery"
];

// Require the components
require(components, function(
    mvc,
    ignored,
    $
) {

    $('#something').click(function() {
      window.open(
                  'YOUR_DASHBOARD_HERE',
                  '_blank' // &amp;lt;- This is what makes it open in a new window.
                );
    });
});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Nov 2016 11:53:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210883#M13178</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2016-11-04T11:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210884#M13179</link>
      <description>&lt;P&gt;Hi @gwobben,&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;

&lt;P&gt;It worked perfectly!!&lt;/P&gt;</description>
      <pubDate>Fri, 04 Nov 2016 13:35:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210884#M13179</guid>
      <dc:creator>guimilare</dc:creator>
      <dc:date>2016-11-04T13:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210885#M13180</link>
      <description>&lt;P&gt;Just want to say this worked brilliantly!&lt;/P&gt;

&lt;P&gt;Just what i was looking for &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Thankyou&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 14:30:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210885#M13180</guid>
      <dc:creator>ehorwood</dc:creator>
      <dc:date>2017-01-04T14:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210886#M13181</link>
      <description>&lt;P&gt;What if I wanted to set a token on click? I'm trying to display panels using "depends" and want to set a tokent true when I click the status indicator. &lt;BR /&gt;
Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 05:03:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210886#M13181</guid>
      <dc:creator>muriloalves</dc:creator>
      <dc:date>2017-02-03T05:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210887#M13182</link>
      <description>&lt;P&gt;What if I want to set a token on click? &lt;/P&gt;

&lt;P&gt;I'm trying to display panels using "depends" and want to set a token == true when I click the status indicator. &lt;/P&gt;

&lt;P&gt;Best would be if I could set/unset on click to show/hide the panel.&lt;/P&gt;

&lt;P&gt;Thanks guys &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Feb 2017 15:31:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210887#M13182</guid>
      <dc:creator>muriloalves</dc:creator>
      <dc:date>2017-02-03T15:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210888#M13183</link>
      <description>&lt;P&gt;Sure, why not.. Please do create a new question next time, that makes it easier for other people to find the answer as well &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;In the JavaScript section add this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;var submitted_tokens = mvc.Components.get('submitted');

$('#something').click(function() {
    submitted_tokens.set('YOURTOKEN', 'SOME-VALUE');
});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Feb 2017 09:02:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210888#M13183</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2017-02-06T09:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210889#M13184</link>
      <description>&lt;P&gt;Thanks @gwobben &lt;BR /&gt;
I ended up (with a friend's help) using something like this to make multiple panels show/hide when clicked.  Do you have any comments to it? Maybe some standardization I'm missing?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;window.currentToken={};

require(['jquery', 'underscore', 'splunkjs/mvc', 'util/console'], function($, _, mvc, console) {
    function setToken(name, value) {
        console.log('Setting Token %o=%o', name, value);
        var defaultTokenModel = mvc.Components.get('default');
        if (defaultTokenModel) {
            defaultTokenModel.set(name, value);
        }
        var submittedTokenModel = mvc.Components.get('submitted');
        if (submittedTokenModel) {
            submittedTokenModel.set(name, value);
        }
    }

        function toggleToken(obj){
                for(var ti in obj){
                        if(currentToken[ti] &amp;amp;&amp;amp; currentToken[ti]==obj[ti]){
                                setToken(ti, undefined);
                                currentToken[ti]=null;
                        }else{
                                setToken(ti, obj[ti]);
                                currentToken[ti]=obj[ti];
                        }
                }

        }



 $('#MyPanel').click(function() {
        toggleToken({"TOKEN1": true, "TOKEN2": true})

 });

});
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Feb 2017 15:10:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210889#M13184</guid>
      <dc:creator>muriloalves</dc:creator>
      <dc:date>2017-02-06T15:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210890#M13185</link>
      <description>&lt;P&gt;Looks fine. I would get rid of the &lt;CODE&gt;console.log(...)&lt;/CODE&gt; section for a more clean code. Another thing, why not use 1 token? You can reuse the same token throughout the dashboard..&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 07:45:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210890#M13185</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2017-02-07T07:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210891#M13186</link>
      <description>&lt;P&gt;Hi, thanks for the reply. The reason for multiple token is I want to reuse panels with predefined searches so I can input multiple parameters to them, based on the scope of the search I need.&lt;/P&gt;

&lt;P&gt;Since we are talking here, I posted a new &lt;A href="https://answers.splunk.com/answers/497845/status-indicator-custom-visualization-how-to-chang.html"&gt;question&lt;/A&gt; here and maybe you have an idea how to get that done? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 15:54:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210891#M13186</guid>
      <dc:creator>muriloalves</dc:creator>
      <dc:date>2017-02-07T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210892#M13187</link>
      <description>&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/497845/status-indicator-custom-visualization-how-to-chang.html"&gt;https://answers.splunk.com/answers/497845/status-indicator-custom-visualization-how-to-chang.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 15:54:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210892#M13187</guid>
      <dc:creator>muriloalves</dc:creator>
      <dc:date>2017-02-07T15:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210893#M13188</link>
      <description>&lt;P&gt;Hi! Do I only need to change the dashboard name in this script or I need to change something else? &lt;/P&gt;

&lt;P&gt;And also I need to create the folder files and reboot splunk?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2017 01:17:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210893#M13188</guid>
      <dc:creator>danielgp89</dc:creator>
      <dc:date>2017-04-13T01:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210894#M13189</link>
      <description>&lt;P&gt;Yes, you have to create the folders and files, and restart Splunk. Make sure the panel id matches with the id you use in the script (row 15 of the script: "$('#something')" should match ""). Finally you only have to change the dashboard name.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2017 04:26:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210894#M13189</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2017-04-13T04:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210895#M13190</link>
      <description>&lt;P&gt;Hello its not working for me!&lt;/P&gt;

&lt;P&gt;This my XML&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2103iCDE0FFA770EB8CA4/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;This is my Script&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/2104i2998649BBB21D9CD/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:06:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210895#M13190</guid>
      <dc:creator>danielgp89</dc:creator>
      <dc:date>2017-04-17T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210896#M13191</link>
      <description>&lt;P&gt;Is the script loaded? Try adding console.log or alert to your script to check if it works. The location of your script could be critical &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:16:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210896#M13191</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2017-04-17T17:16:10Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210897#M13192</link>
      <description>&lt;P&gt;Do I need  SplunkJS Stack be install in my splunk?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:19:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210897#M13192</guid>
      <dc:creator>danielgp89</dc:creator>
      <dc:date>2017-04-17T17:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210898#M13193</link>
      <description>&lt;P&gt;No, that's not needed. The stack is only used for applications outside of Splunk.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:24:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210898#M13193</guid>
      <dc:creator>gwobben</dc:creator>
      <dc:date>2017-04-17T17:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210899#M13194</link>
      <description>&lt;P&gt;how do I load the script?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2017 17:44:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210899#M13194</guid>
      <dc:creator>danielgp89</dc:creator>
      <dc:date>2017-04-17T17:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210900#M13195</link>
      <description>&lt;P&gt;Hello! &lt;/P&gt;

&lt;P&gt;I already fix the issue! But the thing is that it is working with Safari Browser Versión 10.1 but with Google Chrome Versión 57.0.2987.133 (64-bit) it's not working.&lt;/P&gt;

&lt;P&gt;So this solution only works with some web browsers.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2017 19:25:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210900#M13195</guid>
      <dc:creator>danielgp89</dc:creator>
      <dc:date>2017-04-21T19:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to drilldown from an Status Indicator icon?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210901#M13196</link>
      <description>&lt;P&gt;I had follow above but not the other dashboard still not show up. did I miss something. btw i not really familiar with java script/programming&lt;/P&gt;

&lt;P&gt;here my java script:&lt;/P&gt;

&lt;P&gt;// Components to require&lt;BR /&gt;
 var components = [&lt;BR /&gt;
     splunkjs/ready!,&lt;BR /&gt;
     splunkjs/mvc/simplexml/ready!,&lt;BR /&gt;
     jquery&lt;BR /&gt;
 ];&lt;/P&gt;

&lt;P&gt;// Require the components&lt;BR /&gt;
 require(components, function(&lt;BR /&gt;
     mvc,&lt;BR /&gt;
     ignored,&lt;BR /&gt;
     $&lt;BR /&gt;
 ) {&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; $(#something).click(function() {
   window.open( SolarwindsGroupCircuit, );
 });
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;});&lt;/P&gt;

&lt;P&gt;here my dashboard XML file:&lt;/P&gt;

&lt;P&gt;status_indicator Clone&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel id="something"&amp;gt;
  &amp;lt;title&amp;gt;testing 3&amp;lt;/title&amp;gt;
  &amp;lt;viz type="status_indicator_app.status_indicator"&amp;gt;
    &amp;lt;search&amp;gt;
      &amp;lt;query&amp;gt;index=solarwinds|top GroupStatusName
      | eval SLA=GroupStatusName
      | eval icon=case(GroupStatusName=="Up","globe",GroupStatusName=="Down","globe",GroupStatusName=="Warning","globe")
      | eval color=case(GroupStatusName=="Up","#65a637",GroupStatusName=="Down","#d93f3c",GroupStatusName=="Warning","#f7bc38")
      | table GroupStatusName icon color&amp;lt;/query&amp;gt;
      &amp;lt;earliest&amp;gt;rt-30s&amp;lt;/earliest&amp;gt;
      &amp;lt;latest&amp;gt;rt&amp;lt;/latest&amp;gt;
      &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
      &amp;lt;refresh&amp;gt;30s&amp;lt;/refresh&amp;gt;
      &amp;lt;refreshType&amp;gt;delay&amp;lt;/refreshType&amp;gt;
    &amp;lt;/search&amp;gt;
    &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
    &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.colorBy"&amp;gt;field_value&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.fillTarget"&amp;gt;text&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.fixIcon"&amp;gt;warning&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.icon"&amp;gt;field_value&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.precision"&amp;gt;0&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.showOption"&amp;gt;2&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.staticColor"&amp;gt;#555&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.useColors"&amp;gt;true&amp;lt;/option&amp;gt;
    &amp;lt;option name="status_indicator_app.status_indicator.useThousandSeparator"&amp;gt;true&amp;lt;/option&amp;gt;
  &amp;lt;/viz&amp;gt;
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Feb 2018 05:57:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-drilldown-from-an-Status-Indicator-icon/m-p/210901#M13196</guid>
      <dc:creator>hafizuddin</dc:creator>
      <dc:date>2018-02-11T05:57:14Z</dc:date>
    </item>
  </channel>
</rss>

