We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In client.go, flushing the buffer to the log sink can be very slow, depending on network congestion and latency.
During that time, the unbuffered channel c.entries will block the main process from emitting log.
c.entries
I think sendBatch should be called in a goroutine, except for final flush.
sendBatch
Linking the issue to samber/slog-loki#18 and samber/slog-loki#19
WDYT ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In client.go, flushing the buffer to the log sink can be very slow, depending on network congestion and latency.
During that time, the unbuffered channel
c.entries
will block the main process from emitting log.I think
sendBatch
should be called in a goroutine, except for final flush.Linking the issue to samber/slog-loki#18 and samber/slog-loki#19
WDYT ?
The text was updated successfully, but these errors were encountered: