<?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: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216384#M63495</link>
    <description>&lt;P&gt;Yes I would run it more frequently. &lt;/P&gt;

&lt;P&gt;You might also want to look at using the minspan option.  This will tell splunk that even if you search the past 4 hour you can set the min span to say, minspan=1h, which will force the timechart to make 1 hour the smallest bucket size rather than using a span of 5 minutes which it would do automatically without minspan.  This is just the min-span though. It will increase as you search a larger timeframe.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Feb 2016 17:26:30 GMT</pubDate>
    <dc:creator>cramasta</dc:creator>
    <dc:date>2016-02-23T17:26:30Z</dc:date>
    <item>
      <title>Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216318#M63429</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;

&lt;P&gt;I have another issue with timechart, stats, and timepicker.  I have the search below that needs to pull up a value of the average "response time" over the time range picked in the timepicker input, as well as show trending and with color thresholds.  I have the trending and thresholds all set, but the issue I'm having is that the value appearing is just the "response time" avg in the last event instead of changing when I change the range in the timepicker.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| stats count by _time,source,Login_Status,Login_Response,QuickSearch_Status,QuickSearch_Response,Recruiter_Status,Recruiter_Response | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response)  | table _time,Response_Time | chart avg(Response_Time) by _time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Anyone have any ideas on how to tweak the search to show the value of the avg of the range selected in the timepicker?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 20:02:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216318#M63429</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T20:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216319#M63430</link>
      <description>&lt;P&gt;Here's what it looks like in the dashboard panel&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 20:05:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216319#M63430</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T20:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216320#M63431</link>
      <description>&lt;P&gt;You are mentioning  using timechart however Im not seeing timechart command anywhere&lt;/P&gt;

&lt;P&gt;From the example you are providing you are splitting by _time in both the stats and chart command. Unless you are bucketing your time earlier in your query you are going to get a avg metric for each unique time value&lt;/P&gt;

&lt;P&gt;Are each one of these fields found in a single event?&lt;BR /&gt;
Login_Response,QuickSearch_Response,Recruiter_Response&lt;/P&gt;

&lt;P&gt;If they are you should be able to do this below without having to use stats or chart&lt;BR /&gt;
 | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response)  | timechart avg(Response_Time)&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:53:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216320#M63431</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2020-09-29T08:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216321#M63432</link>
      <description>&lt;P&gt;Thanks cramasta&lt;/P&gt;

&lt;P&gt;I must've copied the query after I starting trying different commands.&lt;/P&gt;

&lt;P&gt;Those are separate fields that can be found in 1 single event.  The event is generated using a script that runs every 15 mins.  &lt;/P&gt;

&lt;P&gt;I tried your suggestion and it's still not coming up with what I'm looking for.  This might be easier....below is query that I have on another dashboard panel that gives me the avg response time of the selected timerange from the timepicker.  The value changes correctly as I change the range.  I need to be able to do this same thing within a single value panel that will change colors by set thresholds and show trending.&lt;/P&gt;

&lt;P&gt;It's like I can get one (get the corrected averages) or the other (show value with color changes and trending) but not both in one panel.&lt;/P&gt;

&lt;P&gt;|stats count by QuickSearch_Response,Login_Response,Recruiter_Response | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | stats avg(eval(Response_Time)) AS Avg_Response_Time&lt;/P&gt;

&lt;P&gt;I'm sure I'm probably just missing some to make it work correctly&lt;/P&gt;

&lt;P&gt;Thanks again&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:53:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216321#M63432</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2020-09-29T08:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216322#M63433</link>
      <description>&lt;P&gt;It's hard to tell without sample data, but why wouldn't you just do this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;...base search... | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response)  | timechart avg(Response_Time) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I don't think there is really a need to do a stats and table before your timechart in this case. You can also play with the minspan and maxspan options. See: &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Timechart"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.3/SearchReference/Timechart&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Edit: Try searching a longer time range as well, or see if the events from your script are being timestamped correctly in Splunk.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 21:25:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216322#M63433</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2016-02-22T21:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216323#M63434</link>
      <description>&lt;P&gt;Thanks masonmorales,&lt;/P&gt;

&lt;P&gt;I tried the search with  ...base search... | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response)  | timechart avg(Response_Time) &lt;/P&gt;

&lt;P&gt;The issue that I come up with now is the value shows as 0 if the timepicker preset range is set lower than "last 24 hours"&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:53:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216323#M63434</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2020-09-29T08:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216324#M63435</link>
      <description>&lt;P&gt;What version are you running? &lt;BR /&gt;
Also have you checked out this page for any pointers that you might be missing?&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.3/Viz/Visualizationreference#About_single_value_visualizations"&gt;http://docs.splunk.com/Documentation/Splunk/6.3.3/Viz/Visualizationreference#About_single_value_visualizations&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 21:44:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216324#M63435</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2016-02-22T21:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216325#M63436</link>
      <description>&lt;P&gt;How do you want to show the trend and against which value? What is the threshold value for it to change color?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 21:53:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216325#M63436</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-22T21:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216326#M63437</link>
      <description>&lt;P&gt;in 6.3.3 this all happens automatically if you are using a timechart thats displaying a single metric  such as&lt;BR /&gt;
| eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | timechart avg(Response_Time)&lt;/P&gt;

&lt;P&gt;You can customize the colors and whatnot via the format editor for the single value.&lt;/P&gt;

&lt;P&gt;Here is a simple example. All i did was select single value and it automatically did the trendline because i was using timechart.  Im curious if you are getting 0 because your timechart is creating automatic timespans . What if you manually specified a span so that each time span is garenteed to have data? &lt;/P&gt;

&lt;P&gt;| eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | timechart span=3h avg(Response_Time)&lt;/P&gt;

&lt;P&gt;&lt;IMG src="http://i.imgur.com/ae5e0dG.png" alt="alt text" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:53:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216326#M63437</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2020-09-29T08:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216327#M63438</link>
      <description>&lt;P&gt;somesoni2,&lt;/P&gt;

&lt;P&gt;Basically these are different response times to different parts of a site.  We want to add the 3 response times and get an average time using the timepicker input.  So we have the thresholds for the avg total response time set up to show green &amp;lt; 6s, Yellow &amp;lt;9 and then red &amp;gt;9.  We want the trend arrows and sparkline using a compare from a week ago.&lt;/P&gt;

&lt;P&gt;I can get bits and pieces working but can't put it all together.&lt;/P&gt;

&lt;P&gt;I have the threshold and sparkline/trending arrows working on the total response time but when I try to do avg response time, the value doesn't change when the timepicker changed.  I can get it to show the correct avg value with the color per threshold but without being able to time chart the avg, I cant get the trending portion to show.&lt;/P&gt;

&lt;P&gt;Hope that all made sense &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:07:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216327#M63438</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T22:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216328#M63439</link>
      <description>&lt;P&gt;I tried &lt;/P&gt;

&lt;P&gt;| eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | timechart span=15mins avg(Response_Time)&lt;/P&gt;

&lt;P&gt;And it works sort of.....the value stays the same when I change the timepicker, it looks like it's just grabbing the value in the last event instead of taking all the events in the timerange then adding them and then getting the avg.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:51:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216328#M63439</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2020-09-29T08:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216329#M63440</link>
      <description>&lt;P&gt;Have you tried running the query outside the dashboard to validate the data set you are getting back?&lt;/P&gt;

&lt;P&gt;Or could it be the single value panel is not hooked up to the time range picker?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:25:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216329#M63440</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2016-02-22T22:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216330#M63441</link>
      <description>&lt;P&gt;Yup...I ran the query below just in the search and used the visualization tab to see what the single value chart looks like and I still get zeros until I change the range to 24 hours.  It keeps grabbing the value in the last event.  almost like I'm doing a timechart last instead of timechart avg&lt;/P&gt;

&lt;P&gt;| eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | timechart  avg(Response_Time)&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:51:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216330#M63441</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2020-09-29T08:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216331#M63442</link>
      <description>&lt;P&gt;sorry...I'd post screen shots to help you guys see what I see but I don't have enough Karma points &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:34:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216331#M63442</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T22:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216332#M63443</link>
      <description>&lt;P&gt;Have you tried setting your span? &lt;/P&gt;

&lt;P&gt;| eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | timechart span=1h avg(Response_Time)&lt;/P&gt;

&lt;P&gt;Your script is only generating events once every 15 minutes. If you dont set a span for the timechart and search a small timeframe, it might create spans of 5 minutes, which would result in you getting some 5 minute spans with no events to calculate a average on.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:53:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216332#M63443</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2020-09-29T08:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216333#M63444</link>
      <description>&lt;P&gt;Any chance you can post 24 hours of some sample data that is being used by the timechart command? i.e.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; ...base search... | eval Response_Time=(Login_Response+QuickSearch_Response+Recruiter_Response) | table _time Response_Time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:43:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216333#M63444</guid>
      <dc:creator>masonmorales</dc:creator>
      <dc:date>2016-02-22T22:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216334#M63445</link>
      <description>&lt;P&gt;Tried that and that's where some of my confusion is....or least where I see it not working correctly.  &lt;/P&gt;

&lt;P&gt;So with that search, the value stays at 4.85 secs as I change to timepicker range.  With the "last 15 mins" chosen, the value is 4.85 s which makes sense to be cause that's the value in the 1 event showing.  With the "last 24 hours" chosen the value stays at 4.85s even though some events show that the total responsetime was over 10s.  Same goes with "last 60 mins" or "last 4 hours" chosen.  The value always matches the "last 15 mins".&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:50:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216334#M63445</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T22:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216335#M63446</link>
      <description>&lt;P&gt;sorry masonmorales,&lt;/P&gt;

&lt;P&gt;I don't have enough Karma points to attach a file&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 22:58:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216335#M63446</guid>
      <dc:creator>sidekix24</dc:creator>
      <dc:date>2016-02-22T22:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216336#M63447</link>
      <description>&lt;P&gt;Upon checking the dashboard xml from the "Splunk 6.x Dashboard Example" app-&amp;gt; Single Value Element example, the Trend compare the last value with previous value for the span mentioned in the option &lt;CODE&gt;trendInterval&lt;/CODE&gt;. Do you want to compare data for "Selected timerange" vs "7 days before the selected timerange" ?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 23:05:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216336#M63447</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2016-02-22T23:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Why is the timechart avg function showing the value from last event instead of average for the selected time range from the time picker?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216337#M63448</link>
      <description>&lt;P&gt;Let's forget about the single value and just look at the results from a last hour search and a last 24 hours. In both cases what what are the 2 last the avg values and time values that you are getting back. Thinking we have to understand the data you are getting back before trying to put it into single value.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Feb 2016 23:11:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Why-is-the-timechart-avg-function-showing-the-value-from-last/m-p/216337#M63448</guid>
      <dc:creator>cramasta</dc:creator>
      <dc:date>2016-02-22T23:11:19Z</dc:date>
    </item>
  </channel>
</rss>

