-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URL View of Graph Displays Single Point #88
Comments
I know that the URL view graphs have never handled a single point of data well. I should really fix it, thanks for reporting the issue. |
Well, the problem isn't necessarily that, I have a 6 for the row_count, however it treats it as though its 1 result. I was also getting this error when trying to store the $_ENV data, [Fri Jan 17 11:12:04 2014] [error] [client 192.168.1.44] xhgui - zero-length keys are not allowed, did you use $ with double quotes? then after allowing zerolength keys in php, i got this error. [Fri Jan 17 11:32:26 2014] [error] [client 192.168.1.44] xhgui - '\0' not allowed in key: \0... After commenting out 'env' => $_ENV, everything started working. If it helps at all, I used Symfony autoloaders in my application. |
It looks like the issue was I needed to change the search criteria to the last 30 minutes. |
By default the chart defaults to day view, and groups results by day. You can modify the range below a day and the results will not be grouped anymore. |
The URL view now has the ability to get smaller time frames and ungrouped results. Does that help solve this issue. |
Hello, great product but may have stumbled across an issue. I did a straight clone of the repo and set up the app on my service, and I have several domains, all with the same app, feeding mongodb. I changed the header.php file in the externals folder so that URL gets the
$_SERVER['SERVER_NAME']
along with the $uri instead of just the $uri.Well, the data is being populated as expected, however the problem I'm running into is that the charts on the url view are not rendering properly. I get a chart with 2 points on the far left and that's it.
The JS data that the code is rendering to the page to graph looks like this
and the result from the mongodb aggregate function within getPercentileForUrl returns,
As a side note, I also had to comment out the ENV variable because I was getting errors from mongo stating unable to store empty value error consistently from the header.php file.
Thanks
The text was updated successfully, but these errors were encountered: