<?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: Show two different panels with two values in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/696064#M57037</link>
    <description>&lt;P&gt;Basically what I'm looking for is, I have a Multi Select Server input, if i select&amp;nbsp;5 servers which are belongs to 3 goes to US and 2 go to UK, I want it to have two panels. The US panel shows the clients (3 total). Whereas UK panel shows the identical thing, but only the 2 clients&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I achieve this ?&lt;/P&gt;</description>
    <pubDate>Mon, 12 Aug 2024 22:28:56 GMT</pubDate>
    <dc:creator>Naa_Win</dc:creator>
    <dc:date>2024-08-12T22:28:56Z</dc:date>
    <item>
      <title>Show two different panels with two values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695742#M57013</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a 4 servers A, B C, &amp;amp; D. These servers points to two different DS.&lt;BR /&gt;&lt;BR /&gt;A &amp;amp; B points to US DS server, C &amp;amp; D servers points to UK DS Server.&lt;BR /&gt;&lt;BR /&gt;I'm selecting these 4 servers in an multiselect value and it has to show two different panels. (hide initially)&lt;BR /&gt;&lt;BR /&gt;But, If i select only A &amp;amp; B it has show only US DS panel. (I don't want to show the DS values in the input values.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Naa_Win_0-1723142116828.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32115i168ADC6DBDB3E0E0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Naa_Win_0-1723142116828.png" alt="Naa_Win_0-1723142116828.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2024 18:37:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695742#M57013</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2024-08-08T18:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: Show two different panels with two values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695758#M57015</link>
      <description>Can you share your dashboard code inside &amp;lt;/&amp;gt; block?</description>
      <pubDate>Thu, 08 Aug 2024 19:57:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695758#M57015</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-08-08T19:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Show two different panels with two values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695766#M57017</link>
      <description>&lt;LI-CODE lang="markup"&gt;&amp;lt;form version="1.1" theme="light"&amp;gt;
&amp;lt;label&amp;gt;two DS panels&amp;lt;/label&amp;gt;
&amp;lt;fieldset submitButton="false"&amp;gt;
&amp;lt;input type="multiselect" token="server"&amp;gt;
&amp;lt;label&amp;gt;Server&amp;lt;/label&amp;gt;
&amp;lt;choice value="a"&amp;gt;A&amp;lt;/choice&amp;gt;
&amp;lt;choice value="b"&amp;gt;B&amp;lt;/choice&amp;gt;
&amp;lt;choice value="c"&amp;gt;C&amp;lt;/choice&amp;gt;
&amp;lt;choice value="d"&amp;gt;D&amp;lt;/choice&amp;gt;
&amp;lt;/input&amp;gt;
&amp;lt;/fieldset&amp;gt;
&amp;lt;row&amp;gt;
&amp;lt;panel&amp;gt;
&amp;lt;table&amp;gt;
&amp;lt;title&amp;gt;US DS&amp;lt;/title&amp;gt;
&amp;lt;search&amp;gt;
&amp;lt;query&amp;gt;| makeresults format=csv data="Host, DS
A, US-DS
B, US-DS"
| table Host DS&amp;lt;/query&amp;gt;
&amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
&amp;lt;latest&amp;gt;now&amp;lt;/latest&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;/table&amp;gt;
&amp;lt;/panel&amp;gt;
&amp;lt;panel&amp;gt;
&amp;lt;table&amp;gt;
&amp;lt;title&amp;gt;UK DS&amp;lt;/title&amp;gt;
&amp;lt;search&amp;gt;
&amp;lt;query&amp;gt;| makeresults format=csv data="Host, DS
C, UK-DS
D, UK-DS"
| table Host DS&amp;lt;/query&amp;gt;
&amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
&amp;lt;latest&amp;gt;now&amp;lt;/latest&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;/table&amp;gt;
&amp;lt;/panel&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 08 Aug 2024 21:31:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695766#M57017</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2024-08-08T21:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Show two different panels with two values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695802#M57022</link>
      <description>&lt;P&gt;You should take panel depends on use based on those servers which you have selected.&lt;/P&gt;&lt;P&gt;Something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...
&amp;lt;fieldset ...&amp;gt;
  &amp;lt;input type="multiselect" ...
  &amp;lt;change&amp;gt;
    &amp;lt;condition value="Server A"&amp;gt;
      &amp;lt;set token="t_US_DS"&amp;gt;
....
&amp;lt;/fieldset&amp;gt;
...
&amp;lt;panel depends="$t_US_DS$"&amp;gt;
.....
&amp;lt;/panel&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;I suppose that you will get the idea from above and you can get the details from visualization docs.splunk.com. As you probably have dynamic list of nodes you probably need to do this using lookups with eval in coditions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2024 07:37:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/695802#M57022</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2024-08-09T07:37:46Z</dc:date>
    </item>
    <item>
      <title>Re: Show two different panels with two values</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/696064#M57037</link>
      <description>&lt;P&gt;Basically what I'm looking for is, I have a Multi Select Server input, if i select&amp;nbsp;5 servers which are belongs to 3 goes to US and 2 go to UK, I want it to have two panels. The US panel shows the clients (3 total). Whereas UK panel shows the identical thing, but only the 2 clients&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I achieve this ?&lt;/P&gt;</description>
      <pubDate>Mon, 12 Aug 2024 22:28:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Show-two-different-panels-with-two-values/m-p/696064#M57037</guid>
      <dc:creator>Naa_Win</dc:creator>
      <dc:date>2024-08-12T22:28:56Z</dc:date>
    </item>
  </channel>
</rss>

