-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Time distribution lagging behind #2777
Comments
Oh I found in Then, is there some way to read the generated |
Yes, in real-time, the maximum is set to 50. However, you can use |
Yes, makes sense. I'm not quite sure, but do panels only refresh while they're in view? On mobile it seems some graphs only update from the static to the live version once I scroll them into view.
A few options:
The workaround is kinda fine, but the others are all nice to have, with the last one the nicest I'd say. I also realized I slightly misinterpreted the time graph as 'last 24 hours' rather than 'time-of-day distribution of visitors'. Maybe that description could be slightly clearer. I did a little writeup on installing goaccess here: https://curiouscoding.nl/posts/goaccess-setup/ |
I'm using the html live-view version via websockets, and looking at the 'time distribution' plot with 10 minute intervals.
Currently, the data go from 01:3 to 13:2, even though by now the time is 14:05.
It seems that the table and plot only include the top 50 rows, instead of all datapoints. Note how in the plot below, the x-axis labels are not exactly linear. The should each be 50 minutes apart, but towards the end they are a few hours apart instead, and for example there is not a single data point with
10:?
.The 'total' of the
data
columns is 144=24*6, so internally all rows are known, but the web UI never sees more than 50.In fact, the same may be true for the 'unique visitors per day' table (when sorted per hour). The table has 50 rows of data, while the total number of rows is 52.
Edit: I found
#max-items 366
in the config file. I uncommented that and restarted goaccess, but the number of rows shows is still 50.The text was updated successfully, but these errors were encountered: