Skip to content
Snippets Groups Projects
Commit d13b5877 authored by Bill MacAllister's avatar Bill MacAllister
Browse files

Change the queue.MaxFileSize to 100m

Change the queue.MaxFileSize to 100m to override the default of 1m in
the default and ldap rsyslog fragments.  This will prevent the
creation of many small files when the syslog server is unreachable.
parent 7439adec
No related branches found
No related tags found
No related merge requests found
release/003.031 (UNRELEASED)
Change the work directory used by rsyslog for disk queues to match
Change the work directory used by rsyslog for disk queues to match
the package default. (whm)
Change the queue.MaxFileSize to 100m to override the default of 1m
in the default and ldap rsyslog fragments. This will prevent the
creation of many small files when the syslog server is
unreachable. (whm)
release/003.030 (2014-07-07)
Fix for IPMI on kernels >= 3.13. (darrenp1)
......@@ -35,7 +40,7 @@ release/003.028 (2014-06-17)
Adjust highWater marking settings for remote rsyslog queues based
on suggestions from rsyslog start messages. (whm)
Add base::syslog::tls to support TLS/RELP connections between
Add base::syslog::tls to support TLS/RELP connections between
an rsyslog client and an rsyslog server. (whm)
release/003.027 (2014-05-23)
......
......@@ -19,6 +19,7 @@ if $syslogfacility-text == 'local4' then {
queue.WorkerThreads = "10"
queue.TimeoutEnqueue = "0"
queue.MaxDiskSpace = "2g"
queue.MaxFileSize = "100m"
action.ResumeRetryCount = "-1"
template = "ForwardFormat")
stop
......
......@@ -70,6 +70,7 @@
queue.HighWaterMark = "3000000"
queue.LowWaterMark = "10000"
queue.MaxDiskSpace = "2g"
queue.MaxFileSize = "100m"
queue.WorkerThreads = "10"
queue.TimeoutEnqueue = "0"
action.ResumeRetryCount = "-1"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment