rsyslog 5.8.13 (v5-stable) released

We just released 5.8.13 of the v5-stable branch. This is primarily a maintenance release. It includes several bugfixes for potential aborts or DA queues as well as other fixes. For more details, please review the ChangeLog.

This is the last release of 5.8.x to get the latest patches into this stable version. Soon we will release 5.10.1 which should be the version to be used if you are following the stable releases.

ChangeLog:

http://www.rsyslog.com/changelog-for-5-8-13-v5-stable/

Download:

http://www.rsyslog.com/rsyslog-5-8-13-v5-stable/

As always, feedback is appreciated.

Best regards,

Florian Riedl

rsyslog 6.4.0 (v6-stable) released

This is the first version of the 6.4.x stable branch. It inherits all patches that were introduced in the 6.3.x beta branch. It is the new successor of the 6.2.x stable branch. As of now, the 6.3.x beta is finished as well.

For more information about the fixes, please refer to the ChangeLog.

ChangeLog:

http://www.rsyslog.com/changelog-for-6-4-0-v6-stable/

Download:

http://www.rsyslog.com/rsyslog-6-4-0-v6-stable/

As always, feedback is appreciated.

Best regards,
Florian Riedl

Changelog for 6.4.0 (v6-stable)

Version 6.4.0  [BETA] 2012-08-20

THIS IS THE FIRST VERSION OF THE 6.4.x STABLE BRANCH

It includes all enhancements made in 6.3.x plus what is written in the ChangeLog below.

  • omelasticsearch: support for parameters parent & dynparent added
  • bugfix: imtcp aborted when more than 2 connections were used.
    Incremented pthread stack size to 4MB for imtcp, imptcp and imttcp
    closes: http://bugzilla.adiscon.com/show_bug.cgi?id=342
  • bugfix: imptcp aborted when $InputPTCPServerBindRuleset was used
  • bugfix: problem with cutting first 16 characters from message with bAnnotate
    Thanks to Milan Bartos for the patch.

How to check if config variables are used?

Sometimes you might wonder, if the configuration you created is really used. At least parts of it. This could really happen in a lot of situations. Currently, the config format is changed a lot. This forces users who want to use the new format to use a mixed mode of old and new config style. And this is where a lot of confusion can occur, which results in not properly set config variables. In fact, you just need to create some consistency in the configuration. Most output modules are already updated. If you want to use the new format, you cannot use some old config directives and use some new config directives at the same time. The old ones will be simply ignored then. Instead the default values will be used. A very common case is with queues and this is what I will use for my example. I will show, how you can identify if configuration directives are used correctly. We will use the debug log for this. The rsyslog version I will use is the 6.3.12 beta. In this version, the main message queue still needs to be configured with the old config directives, whereas action queues already support the new config directives. You can enable debug mode for rsyslog with the following commands in a terminal:

export RSYSLOG_DEBUGLOG="/path/to/debuglog" export RSYSLOG_DEBUG="Debug"

You can now start rsyslog on the same command line with:

rsyslogd -c6

You will usually see the debug output in that same terminal, as rsyslog runs in the foreground. That should now just serve as a indicator, that the debug output works. Now here is the config snippet I used:

$ActionQueueType LinkedList $ActionQueueSize 2000000 $ActionQueueTimeoutEnqueue 0 $ActionQueueDequeueBatchSize 400 *.* action(type="omfwd" target="10.10.10.12" port="514" protocol="udp")

As you can see, we configured the action queue with some custom variables in the old fashion, basically the action queue and the action itself with the new style. If you create a new debug file now and review it, search for “action 1” in this case. You should see the following. This screenshot is a excerpt of the debug log. I marked several positions. The green circles show, that the action parameters have been used correctly. The red circles show two of the action queues parameters, where the defaults have been used. This is just a example on how to identify, if your configuration was loaded successfully.

rsyslog 6.2.2 (v6-stable) released

This is a bug-fixing release. Updating is recommended for users of the v6-stable branch. New users please note that in order to build this release, libestr, libee and optionally liblognorm (for mmnormalize) is required.

For more information about the fixes, please refer to the ChangeLog.

ChangeLog:

http://www.rsyslog.com/changelog-for-6-2-2-v6-stable/

Download:

http://www.rsyslog.com/rsyslog-6-2-2-v6-stable/

As always, feedback is appreciated.

Best regards,
Florian Riedl

Scroll to top