Last active
March 2, 2025 00:54
-
-
Save casebeer/1eebd033c9f0d43fbbf785a0679b1064 to your computer and use it in GitHub Desktop.
Receive remote syslog messages with rsyslog and logrotate on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Logfiles under /var/log/hosts per rsyslog.d config | |
/var/log/hosts/*/*.log | |
{ | |
rotate 7 | |
daily | |
missingok | |
notifempty | |
delaycompress | |
compress | |
postrotate | |
/usr/lib/rsyslog/rsyslog-rotate | |
endscript | |
} | |
# Debug remote log file per rsyslog.d config (should be disabled due to high volume) | |
/var/log/rsyslog-remote-all.log | |
{ | |
rotate 2 | |
daily | |
missingok | |
notifempty | |
compress | |
postrotate | |
/usr/lib/rsyslog/rsyslog-rotate | |
endscript | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module(load="imudp") | |
module(load="imtcp") | |
# Log each host to a different folder | |
template(name="RemoteFilename" type="string" string="/var/log/hosts/%FROMHOST-IP%/%HOSTNAME%-%syslogfacility-text%.log") | |
# Ruleset to create new dirs/files for each host per naming template | |
ruleset(name="RemoteRules") { | |
action(type="omfile" dirCreateMode="0755" FileCreateMode="0644" dynaFile="RemoteFilename") | |
# dump all remote logs to a single file for debugging, should disable because of high log volume | |
#action(type="omfile" dirCreateMode="0755" FileCreateMode="0644" file="/var/log/rsyslog-remote-all.log") | |
} | |
# Remote network listener inputs for TCP & UPD ports mapped to new ruleset | |
input(type="imudp" port="514" ruleset="RemoteRules") | |
input(type="imtcp" port="514" ruleset="RemoteRules") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment