Sometimes, in the Azure environment, the waagent rsyslog can get out of control.
To Confirm
Look for the waagent in the process table and see it’s resource usage.
1
nice top -c
1
ps -ef | grep waagent
To Fix
Move the /etc/syslog.d/10-* files out of the way
Move the /etc/syslog.d/10-* files out of the way
1 2
mkdir -p /tmp/old-stuff mv /etc/syslog.d/10-* /tmp/old-stuff
- Restart rsyslogd
1
sudo systemctl restart rsyslogd