From 7397ea3794d4d67e5cf48309841c3874a7dcfa3c Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Mon, 7 Jan 2008 07:04:13 +0000 Subject: preparing for initial 3.10.0 release --- ChangeLog | 12 ++++++++---- rsyslog.conf | 16 +++++++++++++--- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7d889588..e4f8d34e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,7 @@ --------------------------------------------------------------------------- -Version 3.10.0 (rgerhards), 2008-01-?? -- added ability to specify listen IP address for UDP syslog server +Version 3.10.0 (rgerhards), 2008-01-07 +- ability to bind UDP listeners to specific local interfaces/ports and + ability to run multiple of them concurrently - added ability to run multiple UDP listeners concurrently - license changed to GPLv3 - first implementation of loadable input module system @@ -17,8 +18,11 @@ Version 3.10.0 (rgerhards), 2008-01-?? (among others, this can be used for performance fine-tuning) - added a large number of new configuration directives for the new input modules -- ability to bind UDP listeners to specific local interfaces/ports and - ability to run multiple of them concurrently +- enhanced multi-threading utilizing a worker thread pool for the + main message queue +- compilation without pthreads is no longer supported +- much cleaner code due to new objects and removal of single-threading + mode --------------------------------------------------------------------------- Version 2.0.0 STABLE (rgerhards), 2008-01-02 - re-release of 1.21.2 as STABLE with no modifications except some diff --git a/rsyslog.conf b/rsyslog.conf index 9d34c805..10a72d1a 100644 --- a/rsyslog.conf +++ b/rsyslog.conf @@ -1,10 +1,20 @@ +# rsyslog v3: load input modules +# If you do not load inputs, nothing happens! +# You may need to set the module load path if modules are not found. + +$ModLoad immark # provides --MARK-- message capability +$ModLoad imud # provides UDP syslog reception +$ModLoad imtcp # provides TCP syslog reception and GSS-API (if compiled to support it) +$ModLoad imuxsock # provides support for local system logging (e.g. via logger command) +$ModLoad imklog # kernel logging (formerly provided by rklogd) + # Log all kernel messages to the console. # Logging much else clutters up the screen. #kern.* /dev/console # Log anything (except mail) of level info or higher. # Don't log private authentication messages! -*.info;mail.none;authpriv.none;cron.none /var/log/messages +*.info;mail.none;authpriv.none;cron.none -/var/log/messages # The authpriv file has restricted access. authpriv.* /var/log/secure @@ -14,13 +24,13 @@ mail.* -/var/log/maillog # Log cron stuff -cron.* /var/log/cron +cron.* -/var/log/cron # Everybody gets emergency messages *.emerg * # Save news errors of level crit and higher in a special file. -uucp,news.crit /var/log/spooler +uucp,news.crit -/var/log/spooler # Save boot messages also to boot.log local7.* /var/log/boot.log -- cgit