<?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 all panels output to single panel in a dashabord in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484986#M31813</link>
    <description>&lt;P&gt;Hi woodcock, do you refer to &lt;CODE&gt;multisearch&lt;/CODE&gt;? &lt;/P&gt;</description>
    <pubDate>Fri, 15 Nov 2019 07:04:33 GMT</pubDate>
    <dc:creator>ololdach</dc:creator>
    <dc:date>2019-11-15T07:04:33Z</dc:date>
    <item>
      <title>show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484978#M31805</link>
      <description>&lt;P&gt;Hi Splunkers,&lt;/P&gt;

&lt;P&gt;I have 6 panels in my dashboard and all the panels have different underlying query but the output fields in the panel stats table are same and the results in all the panels look like the below sample table.&lt;/P&gt;

&lt;P&gt;I want to club all the results into a single panel/table at the end.So i just want to display one panel which contains the results from all the other panels.&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;user  action  time    object   group   difference        modifier&lt;/STRONG&gt;&lt;BR /&gt;
zbc           xyz   10-Sep  hddh    dj-dhdh       6                  jhyy&lt;BR /&gt;
dhdh    cnnc    10-Sep  fhfhf   jjj-ggg      8                            gg&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 01:12:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484978#M31805</guid>
      <dc:creator>kranthimutyala</dc:creator>
      <dc:date>2019-11-14T01:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484979#M31806</link>
      <description>&lt;P&gt;@kranthimutyala could you add more details as to why you have six different panels for similar results? What is the difference between each of the 6 different panels?&lt;/P&gt;

&lt;P&gt;Also for the community to assist you better if you can provide your current SPL and sample data output for each of the six panels that would be great.&lt;/P&gt;

&lt;P&gt;Please mock/anonymize any sensitive information before posting on Splunk Answers.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 01:30:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484979#M31806</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2019-11-14T01:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484980#M31807</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
I assume that you just want one final table in your dashboard and not 6 sub-tables plus one final. Nevertheless, the approach to solve this question is the same. What I suggest is to cascade the searches:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
&amp;lt;label&amp;gt;Test Dashboard&amp;lt;/label&amp;gt;
&amp;lt;search id="result1"&amp;gt;
&amp;lt;query&amp;gt;
  | makeresults | eval user="zbc" | eval action="xyz" | eval time="10-Sep" | eval object="hddh" | eval difference="1" 
&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;search id="result2" base="result1"&amp;gt;
&amp;lt;query&amp;gt;
  |append [ | makeresults | eval user="zyy" | eval action="Qyz" | eval time="11-Sep" | eval object="hddh" | eval difference="2" ]
&amp;lt;/query&amp;gt;
&amp;lt;/search&amp;gt;
&amp;lt;search id="result3" base="result2"&amp;gt;
&amp;lt;query&amp;gt;
  |append [ | makeresults | eval user="zyty" | eval action="QQyz" | eval time="12-Sep" | eval object="hddh" | eval difference="3" ]
&amp;lt;/query&amp;gt;
&amp;lt;/search&amp;gt;
&amp;lt;row&amp;gt;
&amp;lt;panel&amp;gt;
  &amp;lt;table&amp;gt;
    &amp;lt;title&amp;gt;Result Table&amp;lt;/title&amp;gt;
    &amp;lt;search base="result3"&amp;gt;
      &amp;lt;query&amp;gt;|table *&amp;lt;/query&amp;gt;

    &amp;lt;/search&amp;gt;
  &amp;lt;/table&amp;gt;
&amp;lt;/panel&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This executes the searches sequentially and appends the results&lt;BR /&gt;
Hope it helps&lt;BR /&gt;
Oliver&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 07:02:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484980#M31807</guid>
      <dc:creator>ololdach</dc:creator>
      <dc:date>2019-11-14T07:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484981#M31808</link>
      <description>&lt;P&gt;I tried but not able to see any results being generated.Can you please provide  sample run anywhere code .Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 09:14:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484981#M31808</guid>
      <dc:creator>kranthimutyala</dc:creator>
      <dc:date>2019-11-14T09:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484982#M31809</link>
      <description>&lt;P&gt;Please create an empty dashboard, edit source and paste the code that I've inserted above.&lt;BR /&gt;
Oliver&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 13:17:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484982#M31809</guid>
      <dc:creator>ololdach</dc:creator>
      <dc:date>2019-11-14T13:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484983#M31810</link>
      <description>&lt;P&gt;Thanks for the update, but the export option for the result table  panel is disabled .How to make that enable and download the CSV file&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 13:45:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484983#M31810</guid>
      <dc:creator>kranthimutyala</dc:creator>
      <dc:date>2019-11-14T13:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484984#M31811</link>
      <description>&lt;P&gt;It is a known bug when using the base search feature. Please take a look at the "base-search" feature documentation. You can always press the "open in search". Once you have opened it in a new search window, you can export to csv. Alternatively, you could use the outputcsv command: &lt;A href="https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Outputcsv"&gt;https://docs.splunk.com/Documentation/Splunk/8.0.0/SearchReference/Outputcsv&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Nov 2019 13:53:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484984#M31811</guid>
      <dc:creator>ololdach</dc:creator>
      <dc:date>2019-11-14T13:53:41Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484985#M31812</link>
      <description>&lt;P&gt;Do it like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Your Search Here with all stuff combined
| multireport
[ stats some stuff here]
...
[ stats other stuff here]
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 15 Nov 2019 01:19:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484985#M31812</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-11-15T01:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: show all panels output to single panel in a dashabord</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484986#M31813</link>
      <description>&lt;P&gt;Hi woodcock, do you refer to &lt;CODE&gt;multisearch&lt;/CODE&gt;? &lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2019 07:04:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/show-all-panels-output-to-single-panel-in-a-dashabord/m-p/484986#M31813</guid>
      <dc:creator>ololdach</dc:creator>
      <dc:date>2019-11-15T07:04:33Z</dc:date>
    </item>
  </channel>
</rss>

