From 188583d5a2f0e3ea32a96b16357be14b6d41fa6a Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 7 Jul 2020 15:26:52 -0700 Subject: [PATCH] rsyslog: Disable journal ratelimits during install Every log entry is sacred Related: rhbz#1752754 --- 80-rhel/config_files/common/rsyslog.conf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/80-rhel/config_files/common/rsyslog.conf b/80-rhel/config_files/common/rsyslog.conf index 72018d7..f21f660 100644 --- a/80-rhel/config_files/common/rsyslog.conf +++ b/80-rhel/config_files/common/rsyslog.conf @@ -5,12 +5,15 @@ #### MODULES #### -# The imjournal module bellow is now used as a message source instead of imuxsock. +# The imjournal module below is now used as a message source instead of imuxsock. $ModLoad imuxsock # provides support for local system logging (e.g. via logger command) $SystemLogRateLimitInterval 0 # disables message dropping, we need all of them $ModLoad imjournal # provides access to the systemd journal #$ModLoad imklog # reads kernel messages (the same are read from journald) #$ModLoad immark # provides --MARK-- message capability +# Disable rate limiting to the journal, we need all the messages for debugging +$imjournalRatelimitInterval 0 +$imjournalRatelimitBurst 0 # Provides UDP syslog reception #$ModLoad imudp