diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:41:36 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2013-07-19 14:41:36 +0200 |
commit | 3627d8fc1cc0c37d2d974420aae3d75380ca095e (patch) | |
tree | 3ba07f13ed79f3f4dc3c041bdfd8cd85132cdb11 | |
parent | a19ce00f71087044423fa97aa838513ceed764e1 (diff) | |
download | rsyslog-3627d8fc1cc0c37d2d974420aae3d75380ca095e.tar.gz rsyslog-3627d8fc1cc0c37d2d974420aae3d75380ca095e.tar.bz2 rsyslog-3627d8fc1cc0c37d2d974420aae3d75380ca095e.zip |
doc: add doc for main_queue() object
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | doc/rainerscript.html | 12 |
2 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,6 @@ --------------------------------------------------------------------------- Version 7.5.3 [devel] 2013-07-?? +- add main_queue() configuration object to configure main message queue - bugfix: stream compression in imptcp caused timestamp to be corrupted - imudp: add ability to specify SO_RCVBUF size (rcvbufSize parameter) - impstats: add process resource usage counters [via getrusage()] diff --git a/doc/rainerscript.html b/doc/rainerscript.html index 7cbbfa9f..8548f79b 100644 --- a/doc/rainerscript.html +++ b/doc/rainerscript.html @@ -34,6 +34,18 @@ return a valid result, as you can't really add two letters (to concatenate them, use the concatenation operator &). However, all type conversions are automatically done by the script interpreter when there is need to do so.<br> +<h2>configuration objects</h2> +<h3>main_queue()</h3> +This permits to specify parameters for the main message queue. Note that +only <a href="queue_parameters.html">queue-parameters</a> are permitted for this +config object. This permits to set the same options like in ruleset and action +queues. A special statement is needed for the main queue, because it is a +different object and cannot be configured via any other object. +<p>Note that when the main_queue() object is configured, the legacy +$MainMsgQ... statements are ignored. +<p>Example:</p> +<textarea rows="2" cols="60">main_queue(queue.size="100000" queue.type="LinkedList") +</textarea> <h2>Expressions</h2> The language supports arbitrary complex expressions. All usual operators are supported. The precedence of operations is as follows |