diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-09 08:28:51 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-09 08:28:51 +0000 |
commit | 854c4732f87076dca363bd45ebcfa60bdf034347 (patch) | |
tree | c8345be4be0b86102808ad42edff76f70ef7f0a2 | |
parent | fbd4ecdce40d1164c7cbdd55c672a83755e95482 (diff) | |
download | rsyslog-854c4732f87076dca363bd45ebcfa60bdf034347.tar.gz rsyslog-854c4732f87076dca363bd45ebcfa60bdf034347.tar.xz rsyslog-854c4732f87076dca363bd45ebcfa60bdf034347.zip |
implemented $MainMsgQueueMaxFileSize config directive
-rw-r--r-- | doc/rsyslog_conf.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/rsyslog_conf.html b/doc/rsyslog_conf.html index 89234da0..201ab0a7 100644 --- a/doc/rsyslog_conf.html +++ b/doc/rsyslog_conf.html @@ -61,7 +61,8 @@ development and quite unstable...). So you have been warned ;)</p> <li>$klogSymbolsTwice (imklog) [on/<b>off</b>] -- former klogd -s option</li> <li>$MainMsgQueueFilePrefix <name></li> <li><a href="rsconf1_mainmsgqueuesize.html">$MainMsgQueueSize</a></li> - <li>$MainMsgQueueType [<b>FixedArray</b>/LinkedList/Direct]</li> + <li>$MainMsgQueueMaxFileSize <size_nbr>, default 1m</li> + <li>$MainMsgQueueType [<b>FixedArray</b>/LinkedList/Direct/Disk]</li> <li>$MainMsgQueueWorkerThreads <number>, num worker threads, default 1, recommended 1</li> <li><a href="rsconf1_markmessageperiod.html">$MarkMessagePeriod</a> (immark)</li> @@ -78,6 +79,11 @@ development and quite unstable...). So you have been warned ;)</p> start UDP server on this port, "*" means all addresses</li> <li><a href="rsconf1_umask.html">$UMASK</a></li> </ul> +<p><b>Where <size_nbr> is specified above,</b> modifiers can be used after the +number part. For example, 1k means 1024. Supported are k(ilo), m(ega), g(iga), +t(era), p(eta) and e(xa). Lower case letters refer to the traditional binary +defintion (e.g. 1m equals 1,048,576) whereas upper case letters refer to their +new 1000-based definition (e.g 1M equals 1,000,000).</p> <h2>Basic Structure</h2> <p>Rsyslog supports standard sysklogd's configuration file format and extends it. So in general, you can take a "normal" syslog.conf and use it together with |