<?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: Post Process Dashboard panel showing &amp;quot;search generated too much data for the current display configuration, results have been truncated&amp;quot; in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252170#M45183</link>
    <description>&lt;P&gt;Main searches in postprocess dashboard, has a limit of 500K events returned. It is advisable to limit by using a transforming command in the main search. Try something like this...&lt;/P&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Main Search&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX | bin span=30m _time | stats count sum(OPERATION) by _time OPERATION
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Sub Search 1&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart span=1d sum(count) as count by OPERATION limit=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Sub Search 2&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|search OPERATION="XXXXXX" | fields - OPERATION - count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and so on...&lt;/P&gt;</description>
    <pubDate>Fri, 26 Aug 2016 20:50:44 GMT</pubDate>
    <dc:creator>sundareshr</dc:creator>
    <dc:date>2016-08-26T20:50:44Z</dc:date>
    <item>
      <title>Post Process Dashboard panel showing "search generated too much data for the current display configuration, results have been truncated"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252169#M45182</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;I need help on post process,
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here are my queries:&lt;/P&gt;

&lt;P&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX OPERATION="*" | timechart span=1d count by OPERATION&lt;/P&gt;

&lt;P&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX OPERATION="XXXXXX" | timechart span=30M avg(xxxxxx)&lt;/P&gt;

&lt;P&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX OPERATION="YYYYY" | timechart span=30M avg(xxxxxx)&lt;/P&gt;

&lt;P&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX OPERATION="zzzzz" | timechart span=30M avg(xxxxxx)&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;I updated my dashboard and I used the post process&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;Here is my base query:&lt;BR /&gt;
sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX | fields *&lt;/P&gt;

&lt;P&gt;Sub Queries:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;|timechart span=1d count by OPERATION&lt;/LI&gt;
&lt;LI&gt;|search OPERATION="XXXXXX" | timechart span=30M avg(xxxxxx)&lt;/LI&gt;
&lt;LI&gt;|search OPERATION="YYYYY" | timechart span=30M avg(xxxxxx)&lt;/LI&gt;
&lt;LI&gt;|search OPERATION="zzzzz" | timechart span=30M avg(xxxxxx)&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;All dashboard panels are working are working fine except 1st one. In the dashboard 1st panel I'm seeing results but there is a warning message saying that "search generated too much data for the current display configuration, results have been truncated."&lt;/P&gt;

&lt;P&gt;How to fix this issue? Can I send limited COUNT and AVG data to subqueries(1st panel)?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:46:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252169#M45182</guid>
      <dc:creator>rameshnani</dc:creator>
      <dc:date>2020-09-29T10:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Post Process Dashboard panel showing "search generated too much data for the current display configuration, results have been truncated"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252170#M45183</link>
      <description>&lt;P&gt;Main searches in postprocess dashboard, has a limit of 500K events returned. It is advisable to limit by using a transforming command in the main search. Try something like this...&lt;/P&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Main Search&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype="xxxx" SERVER_POD="XXXX" FLOW_NAME="XXXXXX" SERVICE_NAME=XXXX ENDPOINT_TYPE=XXXX | bin span=30m _time | stats count sum(OPERATION) by _time OPERATION
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Sub Search 1&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| timechart span=1d sum(count) as count by OPERATION limit=0
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;Sub Search 2&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;|search OPERATION="XXXXXX" | fields - OPERATION - count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and so on...&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2016 20:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252170#M45183</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-08-26T20:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Post Process Dashboard panel showing "search generated too much data for the current display configuration, results have been truncated"</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252171#M45184</link>
      <description>&lt;P&gt;Have you opened a support case for this? We are trying to get Splunk to remove this limit and more customers behind this will help drive this.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Ken&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2016 15:10:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Post-Process-Dashboard-panel-showing-quot-search-generated-too/m-p/252171#M45184</guid>
      <dc:creator>kbecker</dc:creator>
      <dc:date>2016-09-29T15:10:53Z</dc:date>
    </item>
  </channel>
</rss>

