• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

Question agent360.log

4Cloud

New Pleskian
Server operating system version
CloudLinux 8.10
Plesk version and microupdate number
Plesk Obsidian v18.0.65_build1800241122.08
Looking at disk usage on our server and see that /var/log/agent360.log is 26.8GB in size. Is there a way to reduce the size of the file?

We do have a Plesk 360 subscription, so not sure why so much is stored locally.

Terry
 
Hi Terry,

When does the log start? (head /var/log/agent360.log)

Also check if agent360 has a logrotate file:
Code:
grep agent360 /etc/logrotate* -r
 
Looks like the first log is from May 2023, about 7 months

grep agent360 /etc/logrotate* -r shows nothing
grep agent360 /usr/local/psa/etc/logrotate* -r shows nothing

I have created a log rotate file set for weekly.
 
File: /etc/logrotate.d/agent360

/var/log/agent360.log {
rotate 5
weekly
compress
delaycompress
create
missingok
}
 
Back
Top