From 3073cb3db1e74827025598396f37b0fb35638879 Mon Sep 17 00:00:00 2001
From: Rainer Gerhards
Date: Fri, 8 Aug 2008 13:59:37 +0200
Subject: preparing for 3.18.2 release
---
doc/manual.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'doc')
diff --git a/doc/manual.html b/doc/manual.html
index eb5fe52d..eae38d1c 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -16,7 +16,7 @@ relay chains while at the same time being very easy to setup for the
novice user. And as we know what enterprise users really need, there is
also professional
rsyslog support available directly from the source!
-This documentation is for version 3.18.1 (v3-stable branch) of rsyslog.
+
This documentation is for version 3.18.2 (v3-stable branch) of rsyslog.
Visit the rsyslog status page to obtain current
version information and project status.
If you like rsyslog, you might
--
cgit v1.2.3
From 018b2f4c86ca2e4849156db1b1d5b6b3ea9b3e0c Mon Sep 17 00:00:00 2001
From: Rainer Gerhards
Date: Tue, 12 Aug 2008 10:56:48 +0200
Subject: bugfix: misspelled config directive + bumped version number
Previously was $MainMsgQueueWorkeTimeoutrThreadShutdown, is now
$MainMsgQueueWorkerTimeoutThreadShutdown. Note that the misspelled
directive is not preserved - if the misspelled directive was used
(which I consider highly unlikely), the config file must be changed.
Thanks to lperr for reporting the bug.
---
doc/manual.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'doc')
diff --git a/doc/manual.html b/doc/manual.html
index eae38d1c..f56b6db6 100644
--- a/doc/manual.html
+++ b/doc/manual.html
@@ -16,7 +16,7 @@ relay chains while at the same time being very easy to setup for the
novice user. And as we know what enterprise users really need, there is
also professional
rsyslog support available directly from the source!
-This documentation is for version 3.18.2 (v3-stable branch) of rsyslog.
+
This documentation is for version 3.18.3 (v3-stable branch) of rsyslog.
Visit the rsyslog status page to obtain current
version information and project status.
If you like rsyslog, you might
--
cgit v1.2.3
From 02f768c37dac9dde424bbd31e378482750fc276c Mon Sep 17 00:00:00 2001
From: Rainer Gerhards
Date: Tue, 12 Aug 2008 16:08:09 +0200
Subject: enhanced ommysql to support custom port to connect to server
Port can be set via new $ActionOmmysqlServerPort config directive
Note: this was a very minor change and thus deemed appropriate to be
done in the stable release.
---
doc/ommysql.html | 46 ++++++++++++++++++++++++++++++++++++++++++++++
doc/rsyslog_conf.html | 2 +-
2 files changed, 47 insertions(+), 1 deletion(-)
create mode 100644 doc/ommysql.html
(limited to 'doc')
diff --git a/doc/ommysql.html b/doc/ommysql.html
new file mode 100644
index 00000000..79d913eb
--- /dev/null
+++ b/doc/ommysql.html
@@ -0,0 +1,46 @@
+
+
+
+MySQL Database Output Module
+
+
+
+MySQL Database Output Module
+Module Name: ommysql
+Author: Michael Meckelein (Initial Author) / Rainer Gerhards
+<rgerhards@adiscon.com>
+Description:
+This module provides native support for logging to MySQL databases. It offers
+superior performance over the more generic omlibdbi module.
+
+Configuration Directives:
+ommysql mostly uses the "old style" configuration, with almost everything on the
+action line itself. A few newer features are being migrated to the new style-config
+directive configuration system.
+
+- $ActionOmmysqlServerPort <port>
Permits to select
+a non-standard port for the MySQL server. The default is 0, which means the
+system default port is used. There is no need to specify this directive unless
+you know the server is running on a non-standard listen port.
+ - Action parameters:
+
:ommysql:database-server,database-name,database-userid,database-password
+
All parameters should be filled in for a successful connect.
+
+Sample:
+The following sample writes all syslog messages to the
+database "syslog_db" on mysqlsever.example.com. The server is
+being accessed under the account of "user" with password "pwd".
+
+
+[rsyslog.conf overview]
+[manual index] [rsyslog site]
+This documentation is part of the
+rsyslog
+project.
+Copyright © 2008 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 e65be0bc..330fd51c 100644
--- a/doc/rsyslog_conf.html
+++ b/doc/rsyslog_conf.html
@@ -30,7 +30,7 @@ trap output module
omrelp - RELP
output module
omgss - output module for GSS-enabled syslog
-ommysql - output module for MySQL
+ommysql - output module for MySQL
ompgsql - output module for PostgreSQL
omlibdbi -
generic database output module (Firebird/Interbase, MS SQL, Sybase,
--
cgit v1.2.3