From 59d4a52c280c00bccde4be0321bb09665cc11d29 Mon Sep 17 00:00:00 2001
From: Rainer Gerhards
Date: Wed, 1 Apr 2009 16:31:41 +0200
Subject: initial work on omprog, an output module to send messages to another
program
---
doc/features.html | 1 -
1 file changed, 1 deletion(-)
(limited to 'doc')
diff --git a/doc/features.html b/doc/features.html
index 501f3304..336b31cc 100644
--- a/doc/features.html
+++ b/doc/features.html
@@ -124,7 +124,6 @@ community. Plus, it can be financially attractive: just think about how much les
be to sponsor a feature instead of purchasing a commercial implementation. Also, the benefit
of being recognised as a sponsor may even drive new customers to your business!
-- Finalize the DTN "planetary Internet" space ship mode output plugin
- port it to more *nix variants (eg AIX and HP UX) - this
needs volunteers with access to those machines and knowledge
- pcre filtering - maybe (depending on feedback) -
--
cgit
From 01e5d51c57536acfa8e05d5b22c001a6cf0701d8 Mon Sep 17 00:00:00 2001
From: Rainer Gerhards
Date: Tue, 14 Apr 2009 14:36:50 +0200
Subject: added doc for $MaxOpenFiles directive
---
doc/rsconf1_maxopenfiles.html | 35 +++++++++++++++++++++++++++++++++++
doc/rsyslog_conf.html | 6 +++---
doc/rsyslog_conf_global.html | 18 +++++++++---------
3 files changed, 47 insertions(+), 12 deletions(-)
create mode 100644 doc/rsconf1_maxopenfiles.html
(limited to 'doc')
diff --git a/doc/rsconf1_maxopenfiles.html b/doc/rsconf1_maxopenfiles.html
new file mode 100644
index 00000000..b6c9cc0e
--- /dev/null
+++ b/doc/rsconf1_maxopenfiles.html
@@ -0,0 +1,35 @@
+
+
+$MaxOpenFiles - rsyslog.conf file
+
+
+[rsyslog configuration directive overview]
+
+
$MaxOpenFiles
+Available Since: 4.3.0
+Type: global configuration directive
+Default: operating system default
+Description:
+Set the maximum number of files that the rsyslog process can have open at any given
+time. Note that this includes open tcp sockets, so this setting is the upper limit for
+the number of open TCP connections as well. If you expect a large nubmer of concurrent
+connections, it is suggested that the number is set to the max number connected plus 1000.
+Please note that each dynafile also requires up to 100 open file handles.
+
The setting is similar to running "ulimit -n number-of-files".
+
Please note that depending on permissions and operating system configuration, the
+setrlimit() request issued by rsyslog may fail, in which case the previous limit is kept
+in effect. Rsyslog will emit a warning message in this case.
+
Sample:
+$MaxOpenFiles 2000
+Bugs:
+For some reason, this settings seems not to work on all platforms. If you experience
+problems, please let us know so that we can (hopefully) narrow down the issue.
+
[rsyslog.conf overview] [manual
+index] [rsyslog site]
+This documentation is part of the
+rsyslog project.
+Copyright © 2009 by Rainer Gerhards and
+Adiscon. Released under the GNU GPL
+version 3 or higher.
+
+
diff --git a/doc/rsyslog_conf.html b/doc/rsyslog_conf.html
index 852d95b5..6990c6bd 100644
--- a/doc/rsyslog_conf.html
+++ b/doc/rsyslog_conf.html
@@ -26,7 +26,7 @@ Lines can be continued by specifying a backslash ("\") as the last
character of the line. There is a hard-coded maximum line length of 4K.
If you need lines larger than that, you need to change compile-time
settings inside rsyslog and recompile.
-
+
Basic Structure
Rsyslog supports standard sysklogd's configuration file format
and extends it. So in general, you can take a "normal" syslog.conf and
@@ -74,9 +74,9 @@ such features is available in rsyslogd, only.
[rsyslog site]
This documentation is part of the
rsyslog project.
-Copyright © 2008 by Rainer Gerhards and
+Copyright © 2008,2009 by Rainer Gerhards and
Adiscon. Released under the GNU GPL
-version 2 or higher.
+version 3 or higher.