Log rotation with automatic *.log file discovery

Posted by Mikko Ohtamaa on Super User See other posts from Super User or by Mikko Ohtamaa
Published on 2012-08-29T08:58:53Z Indexed on 2012/08/29 9:40 UTC
Read the original article Hit count: 289

Filed under:
|

I am hosting several websites which each of run their own Python process and write *.log output files, but the directory structure is not standardized.

Example:

-rw-r--r-- 1 plone      plone      125M 2012-08-29 11:35 ./x/var/log/instance-Z2.log
-rw-r--r-- 1 plone      plone       19M 2012-08-29 00:07 ./zope2.9/y/log/event.log
-rw-r--r-- 1 plone      plone      188M 2012-08-13 00:09 ./zope2.9/y/log/Z2.log
-rw-r--r-- 1 plone      plone      137M 2010-11-16 09:41 ./zope2.9/y/log/event.log

I'd like to make log rotate autodiscovery these log files and run a log rotation on them, as opposite to manually type in every log file to logrotate conf.

  • Does any existing tools offer this kind of log file discovery and rotation capabilities, without manually specifying each file?

  • If not... then just write a shell script which generates the logrotate conf?

© Super User or respective owner

Related posts about linux

Related posts about logrotate