-
Notifications
You must be signed in to change notification settings - Fork 5
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
Implement efficient structured logging #50
Comments
It seems like it does not really make logs appear more readable unfortunately, especially in docker environment. We may want to switch to a different structured logging instead. See #50
It seems like it does not really make logs appear more readable unfortunately, especially in docker environment. We may want to switch to a different structured logging instead. See #50
FWIW: Also, I've noticed that with 18:35:00
18:35:01
18:35:02
18:35:01
18:35:03
18:35:02 Which is not very convenient. |
After investigating several logging frameworks and while working on #141 it seems like the best option would be to use |
Have you looked at slog? I have been using slog in my personal and company project's over the past couple of months and am very pleased with it. You can find the design doc here. For now it is available in |
There are two The ideas and design goals for the Using something that is future-proof and could become a part of a standard library is a compelling argument though. |
We do use a framework that allows structured logging, however currently we use different formats to log stuff in other places. We must unify them in order to have structured Grafana-compatible logging.
logrus
with a more efficient framework. Unfortunatelylogrus
falls short when it comes to performance 🙁The text was updated successfully, but these errors were encountered: