[SOLVED] (...once again...) Logging cadence

ph0x

Renowned Member
Jul 5, 2020
1,327
224
73
/dev/null
Hello everony!

Upon setting up an rsyslog server I realized, that proxmox-backup-api logs every ten seconds "successful auth for user backup@pbs" to syslog.
Has anyone an idea if I can adjust the logging cadence and if so, where to do it?

Regards
Marco
 
You cant adjust it, but you can purge it, burn it to ashes...

Maybe sometime they will implement tickets for it so it becomes less.

cat << 'EOF' > /etc/rsyslog.d/01-blocklist.conf
if $msg contains "successful auth" and $msg contains "backup@pbs" then {
stop
}
EOF

systemctl restart rsyslog
 
  • Like
Reactions: LnxBil and ph0x