<?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 HiddenPostProcess 10000 limit? Configurable? How to overcome? By summarising? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/HiddenPostProcess-10000-limit-Configurable-How-to-overcome-By/m-p/23255#M849</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I am having difficulty working around what I understand to be a hard limit of 10000 events for the HiddenPostProcess module. I am looking for a way to reduce the granularity of the events going across, but without success.&lt;/P&gt;

&lt;P&gt;Example problem code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" autoRun="False" layoutPanel="mainSearchControls"&amp;gt;
    &amp;lt;param name="search"&amp;gt;index=analysisindex01
        eventtype="EVENTS01" OR  
        eventtype="EVENTS02" OR 
        eventtype="EVENTS03" OR 
        eventtype="EVENTS04" OR
        eventtype="EVENTS05" OR 
        eventtype="EVENTS06" OR 
        eventtype="EVENTS07" OR
        eventtype="EVENTS08"
        timeformat="%d/%m/%Y" 
        starttime=10/11/2010 
        searchtimespandays=5
        | fields eventtype, _time
    &amp;lt;/param&amp;gt;
    ... stuff ...
    &amp;lt;module name="HiddenPostProcess" layoutPanel="panel_row2_col1"&amp;gt;
                    &amp;lt;param name="search"&amp;gt;timechart span="1d" count(eventtype) by eventtype&amp;lt;/parm&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will fail. It will produce results, but they will be capped to 10000.&lt;/P&gt;

&lt;P&gt;If I do&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    timeformat="%d/%m/%Y" 
    starttime=10/11/2010 
    searchtimespandays=5
    | bucket _time span=1h
    | fields eventtype, _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in an attempt to summarize the events a bit, I only get 1 row, for 1 day, in the reports generated, and the numbers in it make no sense.&lt;/P&gt;

&lt;P&gt;Is there something I am missing? &lt;/P&gt;

&lt;P&gt;Any and all help is greatly appreciated.&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jan 2011 09:47:28 GMT</pubDate>
    <dc:creator>Alex_Megremis</dc:creator>
    <dc:date>2011-01-10T09:47:28Z</dc:date>
    <item>
      <title>HiddenPostProcess 10000 limit? Configurable? How to overcome? By summarising?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HiddenPostProcess-10000-limit-Configurable-How-to-overcome-By/m-p/23255#M849</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I am having difficulty working around what I understand to be a hard limit of 10000 events for the HiddenPostProcess module. I am looking for a way to reduce the granularity of the events going across, but without success.&lt;/P&gt;

&lt;P&gt;Example problem code:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="HiddenSearch" autoRun="False" layoutPanel="mainSearchControls"&amp;gt;
    &amp;lt;param name="search"&amp;gt;index=analysisindex01
        eventtype="EVENTS01" OR  
        eventtype="EVENTS02" OR 
        eventtype="EVENTS03" OR 
        eventtype="EVENTS04" OR
        eventtype="EVENTS05" OR 
        eventtype="EVENTS06" OR 
        eventtype="EVENTS07" OR
        eventtype="EVENTS08"
        timeformat="%d/%m/%Y" 
        starttime=10/11/2010 
        searchtimespandays=5
        | fields eventtype, _time
    &amp;lt;/param&amp;gt;
    ... stuff ...
    &amp;lt;module name="HiddenPostProcess" layoutPanel="panel_row2_col1"&amp;gt;
                    &amp;lt;param name="search"&amp;gt;timechart span="1d" count(eventtype) by eventtype&amp;lt;/parm&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will fail. It will produce results, but they will be capped to 10000.&lt;/P&gt;

&lt;P&gt;If I do&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    timeformat="%d/%m/%Y" 
    starttime=10/11/2010 
    searchtimespandays=5
    | bucket _time span=1h
    | fields eventtype, _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in an attempt to summarize the events a bit, I only get 1 row, for 1 day, in the reports generated, and the numbers in it make no sense.&lt;/P&gt;

&lt;P&gt;Is there something I am missing? &lt;/P&gt;

&lt;P&gt;Any and all help is greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2011 09:47:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HiddenPostProcess-10000-limit-Configurable-How-to-overcome-By/m-p/23255#M849</guid>
      <dc:creator>Alex_Megremis</dc:creator>
      <dc:date>2011-01-10T09:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: HiddenPostProcess 10000 limit? Configurable? How to overcome? By summarising?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/HiddenPostProcess-10000-limit-Configurable-How-to-overcome-By/m-p/23256#M850</link>
      <description>&lt;P&gt;bucket doesn't actually summarize at all.  bucket just discretizes the value, e.g. in your search, it means for each event, snap the value of _time to the previous hour boundary.&lt;/P&gt;

&lt;P&gt;What you'd want to do is something like&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;timeformat="%d/%m/%Y" starttime=10/11/2010 searchtimespandays=5 | bucket _time span=1h | stats count by _time eventtype
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That will give you 1 row per day per eventtype&lt;/P&gt;

&lt;P&gt;then in your hidden post process, you can do&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;timechart span=1d sum(count) by eventtype
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Jan 2011 06:32:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/HiddenPostProcess-10000-limit-Configurable-How-to-overcome-By/m-p/23256#M850</guid>
      <dc:creator>steveyz</dc:creator>
      <dc:date>2011-01-12T06:32:03Z</dc:date>
    </item>
  </channel>
</rss>

