system-config/modules/nodepool/templates/nodepool.logging.conf.erb
Ian Wienand 6d77d85ede Rotate out nodepool logs every 8-hours
Individual nodepool .log files have now grown to being > 250mb.  This
is a bit much to download and go through when you're trying to debug
an issue with a particular image.

8-hour rotations seems a bit more useful than 24-hour ... and perhaps
even that is a bit long.  I don't think we need to extended the number
of rotations, I'm not sure really old logs are that helpful.

Change-Id: Ia788db809afe470bb9241f17411e4fa97d09ea11
2014-10-22 10:32:52 +11:00

57 lines
1009 B
Plaintext

[loggers]
keys=root,nodepool,requests,image
[handlers]
keys=console,debug,normal,image
[formatters]
keys=simple
[logger_root]
level=WARNING
handlers=console
[logger_requests]
level=WARNING
handlers=debug,normal
qualname=requests
[logger_nodepool]
level=DEBUG
handlers=debug,normal
qualname=nodepool
[logger_image]
level=INFO
handlers=image
qualname=nodepool.image.build
propagate=0
[handler_console]
level=WARNING
class=StreamHandler
formatter=simple
args=(sys.stdout,)
[handler_debug]
level=DEBUG
class=logging.handlers.TimedRotatingFileHandler
formatter=simple
args=('/var/log/nodepool/debug.log', 'H', 8, 30,)
[handler_normal]
level=INFO
class=logging.handlers.TimedRotatingFileHandler
formatter=simple
args=('/var/log/nodepool/nodepool.log', 'H', 8, 30,)
[handler_image]
level=INFO
class=logging.handlers.TimedRotatingFileHandler
formatter=simple
args=('<%= @image_log_document_root %>/image.log', 'H', 8, 30,)
[formatter_simple]
format=%(asctime)s %(levelname)s %(name)s: %(message)s
datefmt=