diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-07 07:04:13 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-07 07:04:13 +0000 |
commit | 7397ea3794d4d67e5cf48309841c3874a7dcfa3c (patch) | |
tree | eb6365a57cae27f9a5c1dd24cecb0fc1a5fb89ec | |
parent | 328056cfab448bf305238cffe48862beee0a2a87 (diff) | |
download | rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.tar.gz rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.tar.xz rsyslog-7397ea3794d4d67e5cf48309841c3874a7dcfa3c.zip |
preparing for initial 3.10.0 release
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | rsyslog.conf | 16 |
2 files changed, 21 insertions, 7 deletions
@@ -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 |