Document URL: * https://access.redhat.com/documentation/en-us/red_hat_virtualization/4.3/html/administration_guide/setting_up_a_host_logging_server Section Number and Name: * 20.5. Setting Up a Host Logging Server Describe the issue: * Step #2 uses the legacy rsyslog format Suggestions for improvement: * Docs should give an example using the new rsyslog format - Step 2 should mention to create a custom .conf file on the syslog server, /etc/rsyslog.d/from_remote.conf for example, with the following content: ~~~ template(name="DynFile" type="string" string="/var/log/%HOSTNAME%/%PROGRAMNAME%.log") ruleset(name="RemoteMachine"){ action(type="omfile" dynaFile="DynFile") } module(load="imudp") input(type="imudp" port="514" ruleset="RemoteMachine") ~~~ - Remove the `Uncomment the following` below example in step 2 - Add another step/example to configure rsyslog.conf in hypervisor side to send logs to remote and restart rsyslog service on the hypervisor too. Add the following line into /etc/rsyslog.conf in hypervisor ~~~ *.info;mail.none;authpriv.none;cron.none @<syslog-FQDN>:514 ~~~ Restart rsyslog in hypervisor ~~~ # systemctl restart rsyslog ~~~ Additional information:
I'm sorry, haven't seen this NI on me. LGTM Thanks