1
0
Fork 0
forked from boyska/circolog
syslogd with circular buffer
Find a file
boyska 8568280dd1 FIX timeout issues between channels
we introduced non-blocking writes; however, being non-blocking when the
goroutine has no buffer means that many messages will be considered
lost.
This commit change from "non blocking" to "max 500ms; first timeout
means stop it all"; it also put a little buffer on client messages.
2018-08-23 02:05:50 +02:00
cmd/circologd FIX timeout issues between channels 2018-08-23 02:05:50 +02:00
hub.go FIX timeout issues between channels 2018-08-23 02:05:50 +02:00
README.md proof of concept 2018-08-22 18:47:00 +02:00

A syslog daemon implementing circular buffer, in-memory storage.

This is useful when you want to keep some (heavy detailed) log available, but you don't want to log too many things to disk.

On your "main" syslog, send some message to this one!