-
-
Notifications
You must be signed in to change notification settings - Fork 360
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
Logs in the merged log view are out of order #3724
Comments
Unfortunately, in merged view, that's the only way it can be. Dozzle streams each container in parallel, and it has no way to coordinate between the different streams. Which means that sometimes when two containers are emitting logs at the same time, it is possible for the logs to be merged. I don't know of an easy solution for this. One idea I had was to send groups of logs together so that they could be grouped on the UI. But that's a lot of work. |
I see, so Dozzle always reads logs for each container independently, regardless if the user is in the merge view? Would it not be possible to change the listening logic (interaction between Dozzle and Docker) to read multiple container's logs if the merge view is open? What I mean is that with the
I am suggesting that when merge view is opened, Dozzle would switch to using "the second option". However, I don't know exactly how the Docker API works and if this is possible to do for all containers. I noticed that the non-compose I believe this would make the merge view significantly more useful, as the current version shows logs where timestamps have large variations. From the screenshots above, you can see shifts of +1 hour, -1 hour, +1 hour, and so on. I can give it a go at implementing this during the weekend if I find the time. |
That's right.
Docker API is very limited. It only allows for one container. This is why the more logs, the more CPU usage because each log stream opens up a thread. It's also similar to stats API. I have looked through the code for Docker CLI and they open up multiple go threads.
I am not sure what the order being consistent has to do here. I am pretty sure
Hmm I missed that. It might be something else happening here. The timestamp comes from Docker. So there might be something wrong with the application that is logging.
My time is limited these days. Any help would be appreciated. I am not sure what the first would be though. If you just get the project up and running and test some idea might be a good start. If you think there can be an improvement, then let me know here in this issue and we can figure out if its right. |
I am closing this because there isn't anything that can be done. One idea would be to redesign how grouped logs are modeled and send them all in one atomic payload. But that's a pretty big change. |
π Check for existing issues
How is Dozzle deployed?
Standalone Deployment
π¦ Dozzle version
v8.11.9
β Command used to run Dozzle
Fragment of my docker-compose.yml
π Describe the bug / provide steps to reproduce it
In the merged log view, the logs appear out of chronological order. I don't know yet how to reproduce this consistently.
π» Environment
πΈ If applicable, add screenshots to help explain your bug
Merged view
Container view (home-assistant)
Notice how a single multilined log message below was interspersed with another container's logs (above).
π If applicable, attach your Dozzle logs. You many need to enable debug mode. See https://dozzle.dev/guide/debugging.
No response
The text was updated successfully, but these errors were encountered: