blob: a9f52856dc1a84cd0606d20f7ed00f627aa46379 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
socklog in cooperation with djb's daemontools is a small and secure replacement
for syslogd. There are three main features, syslogd provides:
- receiving syslog messages from an unix domain socket (/dev/log) or UDP socket
(0.0.0.0:514) and writing them to various files on disk depending on facility
and priority.
- writing received syslog messages to an udp socket (a.b.c.d:514)
socklog provides the first two features with the help of daemontools svscan,
supervise and multilog, provides a different network logging concept and
additionally does log event notification.
multilog has a built in logfile rotation based on file size, so there is no
need for any cron jobs or similar to rotate the logs. Log partitions can be
calculated properly.
WWW: http://smarden.org/socklog/
|