<?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 Covert a Multi Panel Dashbaord into just three panels using dropdown aggregating data from multi sources ? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487433#M45970</link>
    <description>&lt;P&gt;Hi Friends,&lt;BR /&gt;
Please help me in building a dashboard query where i have to prepare a dashboard which should populate events for 3 Sources Suppose A,B and C with each ingesting 3 data types like Android ,IOS and JSON.&lt;/P&gt;

&lt;P&gt;So I want to calculate Event Count , Size Count and show the ingested data in panel just by selecting Android ,IOS and JSON from one dropdown and  selecting sources either A,B or C from From another.&lt;/P&gt;

&lt;P&gt;For Example,&lt;BR /&gt;
If i select B source from input drop down and IOS from another drop down then it should show me the event count and Size Count for Source-B IOS data in the below two panel  one showing Size count and the other showing Size count.&lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 11:19:58 GMT</pubDate>
    <dc:creator>bapun18</dc:creator>
    <dc:date>2019-11-20T11:19:58Z</dc:date>
    <item>
      <title>Covert a Multi Panel Dashbaord into just three panels using dropdown aggregating data from multi sources ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487433#M45970</link>
      <description>&lt;P&gt;Hi Friends,&lt;BR /&gt;
Please help me in building a dashboard query where i have to prepare a dashboard which should populate events for 3 Sources Suppose A,B and C with each ingesting 3 data types like Android ,IOS and JSON.&lt;/P&gt;

&lt;P&gt;So I want to calculate Event Count , Size Count and show the ingested data in panel just by selecting Android ,IOS and JSON from one dropdown and  selecting sources either A,B or C from From another.&lt;/P&gt;

&lt;P&gt;For Example,&lt;BR /&gt;
If i select B source from input drop down and IOS from another drop down then it should show me the event count and Size Count for Source-B IOS data in the below two panel  one showing Size count and the other showing Size count.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 11:19:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487433#M45970</guid>
      <dc:creator>bapun18</dc:creator>
      <dc:date>2019-11-20T11:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: Covert a Multi Panel Dashbaord into just three panels using dropdown aggregating data from multi sources ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487434#M45971</link>
      <description>&lt;P&gt;Hi @bapun18&lt;BR /&gt;
see in the below example, you can find: two dropdowns, two single values and a table.&lt;BR /&gt;
You can replace my fields name, component and group with your fields (source, type and model) &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;test dropdowns&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="time" token="Time"&amp;gt;
      &amp;lt;label&amp;gt;Time&amp;lt;/label&amp;gt;
      &amp;lt;default&amp;gt;
        &amp;lt;earliest&amp;gt;-15m&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
      &amp;lt;/default&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="name"&amp;gt;
      &amp;lt;label&amp;gt;Name&amp;lt;/label&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;prefix&amp;gt;name="&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;name&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;name&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;
          index=_internal
          | dedup name
          | sort name
          | table name
          &amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;$Time.earliest$&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;$Time.latest$&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
    &amp;lt;/input&amp;gt;
    &amp;lt;input type="dropdown" token="component"&amp;gt;
      &amp;lt;label&amp;gt;Component&amp;lt;/label&amp;gt;
      &amp;lt;choice value="*"&amp;gt;All&amp;lt;/choice&amp;gt;
      &amp;lt;default&amp;gt;*&amp;lt;/default&amp;gt;
      &amp;lt;prefix&amp;gt;component="&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;component&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;component&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;
          index=_internal
          | dedup component
          | sort component
          | table component
          &amp;lt;/query&amp;gt;
        &amp;lt;earliest&amp;gt;$Time.earliest$&amp;lt;/earliest&amp;gt;
        &amp;lt;latest&amp;gt;$Time.latest$&amp;lt;/latest&amp;gt;
      &amp;lt;/search&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Sum&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;
            index=_internal $name$ $component$
            | stats sum(ratio) AS ratio
            | eval ratio=round(ratio,2)
            &amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$Time.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$Time.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&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;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Count&amp;lt;/title&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal $name$ $component$
            | stats count&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$Time.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$Time.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&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;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;title&amp;gt;Values for Name&amp;lt;/title&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal $name$ $component$
            | stats sum(ratio) AS ratio count AS Count BY group
            | eval ratio=round(ratio,2)&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;$Time.earliest$&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;$Time.latest$&amp;lt;/latest&amp;gt;
          &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="count"&amp;gt;20&amp;lt;/option&amp;gt;
        &amp;lt;option name="dataOverlayMode"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
        &amp;lt;option name="percentagesRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="refresh.display"&amp;gt;progressbar&amp;lt;/option&amp;gt;
        &amp;lt;option name="rowNumbers"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="totalsRow"&amp;gt;false&amp;lt;/option&amp;gt;
        &amp;lt;option name="wrap"&amp;gt;true&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;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 11:43:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487434#M45971</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-11-20T11:43:49Z</dc:date>
    </item>
    <item>
      <title>Re: Covert a Multi Panel Dashbaord into just three panels using dropdown aggregating data from multi sources ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487435#M45972</link>
      <description>&lt;P&gt;Hi  gcusello ,&lt;BR /&gt;
Thanks a lot for sharing the Xml code.&lt;BR /&gt;
It would be great if you could share your the dashboard query for the specific panels.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 13:09:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487435#M45972</guid>
      <dc:creator>bapun18</dc:creator>
      <dc:date>2019-11-20T13:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Covert a Multi Panel Dashbaord into just three panels using dropdown aggregating data from multi sources ?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487436#M45973</link>
      <description>&lt;P&gt;Hi @bapun18,&lt;BR /&gt;
what do you mean with "dashboard query for the specific panels"?&lt;BR /&gt;
in each panel you can find the search of that panel between the tags &lt;CODE&gt;&amp;lt;query&amp;gt;&lt;/CODE&gt; and &lt;CODE&gt;&amp;lt;/query&amp;gt;&lt;/CODE&gt; , e.g. the search for the first Single Value panel is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal $name$ $component$
| stats sum(ratio) AS ratio
| eval ratio=round(ratio,2)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;where &lt;CODE&gt;$name$ $component$&lt;/CODE&gt; are the tokens from the dropdowns.&lt;/P&gt;

&lt;P&gt;In this dashboard, you can see how to create the dropdowns and how to use them to filter searches in panels.&lt;/P&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 13:16:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Covert-a-Multi-Panel-Dashbaord-into-just-three-panels-using/m-p/487436#M45973</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-11-20T13:16:15Z</dc:date>
    </item>
  </channel>
</rss>

