<?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 display running average with autoregress? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57313#M179937</link>
    <description>&lt;P&gt;I am attempting to calculate a running average with autoregress for a count of errors across a group of servers.  I'm using the following query to get the data in 5-minute slices&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="monitoring" ServerErrors  | timechart span=5m sum(ServerErrors)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How would I get a running average of the last four hours of the values generated here?  Do I want to use something like &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| autogregress p1-48
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My experience here is very limited, so I'm certain there is much I don't know about what's going on here. &lt;/P&gt;</description>
    <pubDate>Fri, 11 Mar 2011 05:22:53 GMT</pubDate>
    <dc:creator>dang</dc:creator>
    <dc:date>2011-03-11T05:22:53Z</dc:date>
    <item>
      <title>display running average with autoregress?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57313#M179937</link>
      <description>&lt;P&gt;I am attempting to calculate a running average with autoregress for a count of errors across a group of servers.  I'm using the following query to get the data in 5-minute slices&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="monitoring" ServerErrors  | timechart span=5m sum(ServerErrors)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;How would I get a running average of the last four hours of the values generated here?  Do I want to use something like &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| autogregress p1-48
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My experience here is very limited, so I'm certain there is much I don't know about what's going on here. &lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2011 05:22:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57313#M179937</guid>
      <dc:creator>dang</dc:creator>
      <dc:date>2011-03-11T05:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: display running average with autoregress?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57314#M179938</link>
      <description>&lt;P&gt;I'd go this route:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index="monitoring" ServerErrors 
       | timechart span=5m sum(ServerErrors) as Error5MinSum 
       | streamstats avg(Error5MinSum) window=48
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;A href="http://www.splunk.com/base/Documentation/latest/SearchReference/Streamstats" rel="nofollow"&gt;http://www.splunk.com/base/Documentation/latest/SearchReference/Streamstats&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2011 06:05:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57314#M179938</guid>
      <dc:creator>David</dc:creator>
      <dc:date>2011-03-11T06:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: display running average with autoregress?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57315#M179939</link>
      <description>&lt;P&gt;Thanks.  This provided the kind of information I wanted.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2011 07:49:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/display-running-average-with-autoregress/m-p/57315#M179939</guid>
      <dc:creator>dang</dc:creator>
      <dc:date>2011-03-11T07:49:32Z</dc:date>
    </item>
  </channel>
</rss>

