You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ro...@apache.org on 2022/05/23 09:22:24 UTC

[couchdb-documentation] branch add-syslog-infos created (now 275c143)

This is an automated email from the ASF dual-hosted git repository.

ronny pushed a change to branch add-syslog-infos
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git


      at 275c143  Add infos about enable logging over UDP in rsyslog

This branch includes the following new commits:

     new 275c143  Add infos about enable logging over UDP in rsyslog

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb-documentation] 01/01: Add infos about enable logging over UDP in rsyslog

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ronny pushed a commit to branch add-syslog-infos
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git

commit 275c143bc558d14c2695cbf79bcea3d931f5017a
Author: Ronny Berndt <ro...@apache.org>
AuthorDate: Mon May 23 11:22:13 2022 +0200

    Add infos about enable logging over UDP in rsyslog
---
 src/config/logging.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/config/logging.rst b/src/config/logging.rst
index 641fa75..933e750 100644
--- a/src/config/logging.rst
+++ b/src/config/logging.rst
@@ -137,3 +137,13 @@ Logging options
 
             [log]
             syslog_facility = local2
+
+    .. note::
+        CouchDB's ``syslog`` only knows how to use UDP logging. Please ensure that your
+        ``syslog`` server has UDP logging enabled.
+
+        For ``rsyslog`` you can enable the UDP module `imudp` in ``/etc/rsyslog.conf``::
+
+            # provides UDP syslog reception
+            module(load="imudp")
+            input(type="imudp" port="514")