<?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 Single panel with multiple values in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370746#M44765</link>
    <description>&lt;P&gt;I am interested in creating a dashboard which has a row with one panel with multiple single values similar to the first row in the documentation -&amp;gt; &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.6.2/Viz/Aboutthismanual"&gt;http://docs.splunk.com/Documentation/Splunk/6.6.2/Viz/Aboutthismanual&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Can someone please let me know how to do it.... &lt;/P&gt;</description>
    <pubDate>Tue, 15 Aug 2017 21:40:01 GMT</pubDate>
    <dc:creator>bohrasaurabh</dc:creator>
    <dc:date>2017-08-15T21:40:01Z</dc:date>
    <item>
      <title>Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370746#M44765</link>
      <description>&lt;P&gt;I am interested in creating a dashboard which has a row with one panel with multiple single values similar to the first row in the documentation -&amp;gt; &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.6.2/Viz/Aboutthismanual"&gt;http://docs.splunk.com/Documentation/Splunk/6.6.2/Viz/Aboutthismanual&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Can someone please let me know how to do it.... &lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 21:40:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370746#M44765</guid>
      <dc:creator>bohrasaurabh</dc:creator>
      <dc:date>2017-08-15T21:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370747#M44766</link>
      <description>&lt;P&gt;Hi @bohrasaurabh, your link is for a deleted page. Can you please update it?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 21:44:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370747#M44766</guid>
      <dc:creator>lfedak_splunk</dc:creator>
      <dc:date>2017-08-15T21:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370748#M44767</link>
      <description>&lt;P&gt;@lfedak this should be a comment. Comments are for clarifying questions and more details whereas answers are to post Solutions. Thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 21:57:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370748#M44767</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-08-15T21:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370749#M44768</link>
      <description>&lt;P&gt;Woops, thought I did post it as a comment. Thanks for catching that &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Aug 2017 21:59:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370749#M44768</guid>
      <dc:creator>lfedak_splunk</dc:creator>
      <dc:date>2017-08-15T21:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370750#M44769</link>
      <description>&lt;P&gt;If I understand what you're looking for, all you need to do is all the single values into the same panel in the source code. Try something similar to this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel&amp;gt;
  &amp;lt;single&amp;gt;
     &amp;lt;search&amp;gt;
         &amp;lt;query&amp;gt;....&amp;lt;/query&amp;gt;
     &amp;lt;/search&amp;gt;
   &amp;lt;/single&amp;gt;
   &amp;lt;single&amp;gt;
     &amp;lt;search&amp;gt;
         &amp;lt;query&amp;gt;....&amp;lt;/query&amp;gt;
     &amp;lt;/search&amp;gt;
   &amp;lt;/single&amp;gt;.....
&amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you want to break a new row into the panel, add &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;html tokens="true" encoded="true"&amp;gt;
       &amp;lt;![CDATA[
           &amp;lt;br/&amp;gt;
           ]]&amp;gt;
    &amp;lt;/html&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Aug 2017 22:10:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370750#M44769</guid>
      <dc:creator>cmerriman</dc:creator>
      <dc:date>2017-08-15T22:10:03Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370751#M44770</link>
      <description>&lt;P&gt;@lfedak  Intresting... The link I posted existed when I posted this question. I still had it open from yesterday and posting the screen capture. &lt;/P&gt;

&lt;P&gt;@cmerriman I will try your suggestion and will let you know. Thanks,&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/3362i459F8A89468327E4/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>Wed, 16 Aug 2017 16:53:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370751#M44770</guid>
      <dc:creator>bohrasaurabh</dc:creator>
      <dc:date>2017-08-16T16:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370752#M44771</link>
      <description>&lt;P&gt;Exactly what I was looking for!!! &lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 17:09:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370752#M44771</guid>
      <dc:creator>bohrasaurabh</dc:creator>
      <dc:date>2017-08-16T17:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370753#M44772</link>
      <description>&lt;P&gt;@lfedak: The page still exists. I think the issue is the period at the end of the link is becoming part of the URL  when you click it and hence page does not exist  error. I am unable to edit the question any more to remove that period sign.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 17:15:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370753#M44772</guid>
      <dc:creator>bohrasaurabh</dc:creator>
      <dc:date>2017-08-16T17:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370754#M44773</link>
      <description>&lt;P&gt;How does the panel fit in the html tag?  Can you provide full example&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jan 2019 21:32:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370754#M44773</guid>
      <dc:creator>splunkwiz</dc:creator>
      <dc:date>2019-01-25T21:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370755#M44774</link>
      <description>&lt;P&gt;To convert my original dashboard with a "row of panels" into a "single panel" with a row of visualizations, all I had to do was Edit &amp;gt; Source and move the "title" tags of these panels to be inside the "single" tags, then remove the "panel" (close and open) tags in between each visualization.&lt;/P&gt;

&lt;P&gt;I found this reference in the "Splunk Dashboard Examples" app: &lt;A href="https://splunkbase.splunk.com/app/1603/"&gt;https://splunkbase.splunk.com/app/1603/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Open the "Splunk Dashboard Examples" app and scroll down to "Layout Elements" &amp;gt; "Panel Grouping with Single Values". This is available in Splunk 6.4+. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
    &amp;lt;label&amp;gt;Panel Grouping with Single Values&amp;lt;/label&amp;gt;
    &amp;lt;description&amp;gt;Group multiple single value elements, aligning horizontally.&amp;lt;/description&amp;gt;
    &amp;lt;row&amp;gt;
        &amp;lt;panel&amp;gt;
            &amp;lt;!-- 2 elements are grouped into 1 column --&amp;gt;
            &amp;lt;single&amp;gt;
                &amp;lt;title&amp;gt;Single panel 1&amp;lt;/title&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=_internal earliest=-h | stats count&amp;lt;/query&amp;gt;
                &amp;lt;/search&amp;gt;
                ...
            &amp;lt;/single&amp;gt;
            &amp;lt;single&amp;gt;
                &amp;lt;title&amp;gt;Single panel 2&amp;lt;/title&amp;gt;
                &amp;lt;search&amp;gt;
                    &amp;lt;query&amp;gt;index=_internal earliest=-24h | stats count&amp;lt;/query&amp;gt;
                &amp;lt;/search&amp;gt;
                ...
            &amp;lt;/single&amp;gt;
        &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Oct 2019 07:54:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370755#M44774</guid>
      <dc:creator>bwlm</dc:creator>
      <dc:date>2019-10-03T07:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: Single panel with multiple values</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370756#M44775</link>
      <description>&lt;P&gt;Please see the example I added below from the Splunk Dashboard Examples app. Nesting tags: dashboard &amp;gt; row &amp;gt; panel &amp;gt; single &amp;gt; title &amp;gt; search.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Oct 2019 07:59:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Single-panel-with-multiple-values/m-p/370756#M44775</guid>
      <dc:creator>bwlm</dc:creator>
      <dc:date>2019-10-03T07:59:06Z</dc:date>
    </item>
  </channel>
</rss>

