Closed GoogleCodeExporter closed 8 years ago
The stats system itself is getting a major overhaul, as is the graphing system.
I'll use this ticket to track those.
Original comment by mchol...@gmail.com
on 24 Jul 2012 at 1:43
Found the issue with blank graphs: When it queries the stats table, if there
aren't any results for a period of time within the query (We had our server
offline for a few days, so there were no entries between the 26th and 29th)
your query will return null values. By redefining the query's starting time in
stats.js to give results from a narrower time frame (using 'iStart =
Math.round(oDate.getTime() / 1000) - (3600 * 24 * .2);' worked for me), the
query returned no null results and the graphs displayed fine.
I'm not sure how you grab your information, but if you just have something to
handle the null values everything should work.
Original comment by sitko.ma...@gmail.com
on 30 Jul 2012 at 9:42
Example result from 'http:\\ELSA/Query/get_stats?start=2012-07-24
16:36:19&end=2012-07-30 16:36:19':
"data" : {
"LogsPerSec" : [
"68.3031821133686",
"35.141081202868",
"10.0462539594184",
null,
null,
"26.4058420473672",
...
],
"x" : [
"2012-07-26 07:48:27",
"2012-07-26 09:54:28",
"2012-07-26 10:57:29",
null,
null,
"2012-07-26 14:15:18",
...
],
Original comment by sitko.ma...@gmail.com
on 30 Jul 2012 at 9:44
That's helpful, thanks. I'll incorporate that error checking in the new stats
system as it's being developed.
Original comment by mchol...@gmail.com
on 31 Jul 2012 at 2:15
This should be fixed with the new stats system.
Original comment by mchol...@gmail.com
on 29 Nov 2012 at 10:35
Original issue reported on code.google.com by
sitko.ma...@gmail.com
on 24 Jul 2012 at 1:35