日志旋转计时?

日志旋转计时?

我已经配置了 logrotation,当我强制更新时它会按照我想要的方式工作。我正在使用文件大小条件,如您在下面的配置中看到的那样,但我想知道检查此条件的频率是多少?当我的文件大小达到 3GB 时,旋转是否会立即发生,还是会一直保持在 3GB 直到下一个时间间隔(即...)?

我想让它尽可能接近瞬时:)

----@----------:/var/log/upstart# vim /etc/logrotate.d/upstart

/var/log/upstart/*-server.log.* {
        size 3G
        missingok
        rotate 5
        compress
        notifempty
        nocreate
}

    root@osshonisyslog1s:/var/log/upstart# vim  /etc/crontab

# /etc/crontab: system-wide crontab
# Unlike any other crontab you don't have to run the `crontab'
# command to install the new version when you edit this file
# and files in /etc/cron.d. These files also have username fields,
# that none of the other crontabs do.

SHELL=/bin/sh
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin

# m h dom mon dow user  command
17 *    * * *   root    cd / && run-parts --report /etc/cron.hourly
25 6    * * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily )
47 6    * * 7   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly )
52 6    1 * *   root    test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
*/5 * * * * /etc/cron.daily/logrotate

答案1

据我了解,一旦脚本发现文件超过 3G,它就会按照配置继续压缩和旋转文件。

相关内容