diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2006-12-19 12:53:16 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2006-12-19 12:53:16 +0000 |
commit | 7fe235b03ce60b148abbd48357df2ea04f371358 (patch) | |
tree | 9e120c6b6781f3ad096bd3e23aa9b81e46aeb387 | |
parent | 0cfe9f29c1b8bb179e182dcbed4b1f68dd89ee4b (diff) | |
download | rsyslog-7fe235b03ce60b148abbd48357df2ea04f371358.tar.gz rsyslog-7fe235b03ce60b148abbd48357df2ea04f371358.tar.xz rsyslog-7fe235b03ce60b148abbd48357df2ea04f371358.zip |
preparing for release
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | linux/Makefile | 2 | ||||
-rw-r--r-- | sample.conf | 9 |
3 files changed, 12 insertions, 2 deletions
@@ -1,5 +1,5 @@ --------------------------------------------------------------------------- -Version 1.13.0 (RGer), 2006-??-?? +Version 1.13.0 (RGer), 2006-12-19 - added '$' as ToPos proptery replacer specifier - means "up to the end of the string - property replacer option "escape-cc", "drop-cc" and "space-cc" added @@ -18,6 +18,7 @@ Version 1.13.0 (RGer), 2006-??-?? syslog-transport-tls-05 Internet Draft). This was necessary to support compression over TCP. - added support for receiving compressed syslog messages +- added support for sending compressed syslog messages - fixed a bug where the last message in a syslog/tcp stream was lost if it was not properly terminated by a LF character --------------------------------------------------------------------------- diff --git a/linux/Makefile b/linux/Makefile index 871be923..7ed8c14d 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -42,7 +42,7 @@ FEATURE_RFC3195=0 FEATURE_PTHREADS=1 # Enable debug mode (much slower code) -FEATURE_DEBUG=1 +FEATURE_DEBUG=0 # The following defines tell us where liblogging is located. This # is only needed if we build with RFC 3195 support. By default, diff --git a/sample.conf b/sample.conf index 08c8fcc2..01db3af8 100644 --- a/sample.conf +++ b/sample.conf @@ -231,6 +231,15 @@ $template dbFormat,"insert into SystemEvents (Message, Facility,FromHost, Priori # syslogd like rsyslogd ;)). # Of course, you can also specify a template with TCP: *.* @@172.19.2.16:1514;RFC3164Fmt +# There are also some options you can select. These come between +# paranthesis. Available are: +# z<number> - turn on compression, number is compression mode 0 - none, 9 max +# o - (tcp only) use octet counting for framing EXPERIMENTAL +# +# Forward via TCP with maximum compression and octet couting framing: +*.* @@(z9,o)172.19.2.16:1514;RFC3164Fmt +# Forward via UDP with maximum compression to port 1514 +*.* @(z9)172.19.2.16:1514 # We also support property-based filters, which allow for nice # things. Let's for example assume that you receive a lot of |