
Collectd generates periodic logs indicating the platform CPU and memory usage. When daemon.log rotates very quickly, only a few days of history of these logs is available. If the logs are moved to a separate file, a much longer history of platform resource usage will be available regardless of how quickly daemon.log is rotated. Defined collectd.log to keep only 10 files, still rotating when reaching 10MB. Closes-Bug: #1942263 Signed-off-by: Joao Paulo Tavares Musico <joaopaulotavares.musico@windriver.com> Change-Id: Id1cdf58b5641abc105f41bbd910ca4ba1a1c55fe
125 lines
2.5 KiB
Plaintext
125 lines
2.5 KiB
Plaintext
# /etc/logrotate.d/syslog-ng - Provided by syslog-ng-logrotate
|
|
|
|
/var/log/syslog
|
|
/var/log/auth.log
|
|
/var/log/cron.log
|
|
/var/log/daemon.log
|
|
/var/log/daemon-ocf.log
|
|
/var/log/containerd.log
|
|
/var/log/kern.log
|
|
/var/log/lpr.log
|
|
/var/log/mail.log
|
|
/var/log/news.log
|
|
/var/log/user.log
|
|
/var/log/uucp.log
|
|
/var/log/local*.log
|
|
/var/log/postgres.log
|
|
/var/log/postgresql.log
|
|
/var/log/haproxy.log
|
|
/var/log/platform.log
|
|
/var/log/openstack.log
|
|
/var/log/sysinv.log
|
|
/var/log/sysinv-api.log
|
|
/var/log/nfv-vim-api.log
|
|
/var/log/nfv-vim-webserver.log
|
|
/var/log/keystone/*.log
|
|
/var/log/horizon.log
|
|
/var/log/barbican/barbican-keystone-listener.log
|
|
/var/log/barbican/barbican-worker.log
|
|
{
|
|
nodateext
|
|
size 10M
|
|
start 1
|
|
rotate 20
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload syslog-ng > /dev/null 2>&1 || true
|
|
endscript
|
|
}
|
|
|
|
/var/log/collectd.log
|
|
{
|
|
nodateext
|
|
size 10M
|
|
start 1
|
|
rotate 10
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload syslog-ng > /dev/null 2>&1 || true
|
|
endscript
|
|
}
|
|
|
|
|
|
/var/log/nfv-vim.log
|
|
{
|
|
nodateext
|
|
size 20M
|
|
start 1
|
|
rotate 40
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload syslog-ng > /dev/null 2>&1 || true
|
|
endscript
|
|
}
|
|
|
|
/var/log/collect.log
|
|
/var/log/ldapscripts.log
|
|
/var/log/tuned/tuned.log
|
|
/var/log/armada/*.log
|
|
{
|
|
nodateext
|
|
size 10M
|
|
start 1
|
|
rotate 20
|
|
missingok
|
|
notifempty
|
|
compress
|
|
copytruncate
|
|
}
|
|
|
|
/var/log/sm.log
|
|
/var/log/ima.log
|
|
{
|
|
nodateext
|
|
size 50M
|
|
start 1
|
|
rotate 10
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
postrotate
|
|
systemctl reload syslog-ng > /dev/null 2>&1 || true
|
|
endscript
|
|
}
|
|
|
|
/var/log/bash.log
|
|
/var/log/sshlog.log
|
|
{
|
|
nodateext
|
|
size 100M
|
|
start 1
|
|
rotate 20
|
|
missingok
|
|
notifempty
|
|
compress
|
|
sharedscripts
|
|
firstaction
|
|
/usr/bin/logmgmt_prerotate > /dev/null 2>&1 || true
|
|
endscript
|
|
# using lastaction to ensure log file compression succeeds
|
|
lastaction
|
|
service syslog-ng reload > /dev/null 2>&1 || true
|
|
/usr/bin/logmgmt_postrotate > /dev/null 2>&1 || true
|
|
endscript
|
|
}
|