summaryrefslogtreecommitdiffstats
path: root/rsyslog.conf
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-01-31 11:32:25 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-01-31 11:32:25 +0000
commit77358e12ab9c8a52c81673e24239d7878e7848c9 (patch)
tree2643e033ae06e51f182dd0d0d09f68e67e1ca0cb /rsyslog.conf
parent182c2cafceef701cfcd79e2a7994faa9fc5d4672 (diff)
downloadrsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.tar.gz
rsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.tar.xz
rsyslog-77358e12ab9c8a52c81673e24239d7878e7848c9.zip
- fixed bug in sample rsyslog.conf
- fixed wrong action suspend/resume handling - we have some issue with the mutx in dbgoprint, but that is acceptable for the time being, I just removed the deadlock codition (debug system only)
Diffstat (limited to 'rsyslog.conf')
-rw-r--r--rsyslog.conf5
1 files changed, 3 insertions, 2 deletions
diff --git a/rsyslog.conf b/rsyslog.conf
index 2740c794..2ff7d271 100644
--- a/rsyslog.conf
+++ b/rsyslog.conf
@@ -38,11 +38,12 @@ local7.* /var/log/boot.log
# down, messages are spooled to disk and sent when it is up again.
#$WorkDirectory /rsyslog/spool # where to place spool files
#$ActionQueueFileName uniqName # unique name prefix for spool files
-#$ActionQueueMaxDiskSpace 2g # 2gb space limit (use as much as possible)
+#$ActionQueueMaxDiskSpace 1g # 1gb space limit (use as much as possible)
#$ActionQueueSaveOnShutdown on # save messages to disk on shutdown
#$ActionQueueType LinkedList # run asynchronously
#$ActionResumeRetryCount -1 # infinety retries if host is down
-#*.* @@remote-host # remote host is: name/ip:port
+# remote host is: name/ip:port, e.g. 192.168.0.1:514, port optional
+#*.* @@remote-host
# ######### Receiving Messages from Remote Hosts ##########