f1555c1868
Following commits matches the logging behaviour that can be found in monasca-log-api and will be available in monasca-api. With it, it is possible to granullary control severities of different components of monasca-persister. Provides logging to the console and file. File logging has rotating capability enabled. Change-Id: If16138b38a5a4344c18eefe159d80585a8c68819
50 lines
912 B
Plaintext
50 lines
912 B
Plaintext
[loggers]
|
|
keys = root, kafka, influxdb, cassandra
|
|
|
|
[handlers]
|
|
keys = console, file
|
|
|
|
[formatters]
|
|
keys = generic
|
|
|
|
[logger_root]
|
|
level = DEBUG
|
|
formatter = default
|
|
handlers = console, file
|
|
|
|
[logger_kafka]
|
|
qualname = kafka
|
|
level = DEBUG
|
|
formatter = default
|
|
handlers = console, file
|
|
propagate = 0
|
|
|
|
[logger_influxdb]
|
|
qualname = influxdb
|
|
level = DEBUG
|
|
formatter = default
|
|
handlers = console, file
|
|
propagate = 0
|
|
|
|
[logger_cassandra]
|
|
qualname = cassandra
|
|
level = DEBUG
|
|
formatter = default
|
|
handlers = console, file
|
|
propagate = 0
|
|
|
|
[handler_console]
|
|
class = logging.StreamHandler
|
|
args = (sys.stderr,)
|
|
level = DEBUG
|
|
formatter = generic
|
|
|
|
[handler_file]
|
|
class = logging.handlers.RotatingFileHandler
|
|
level = DEBUG
|
|
formatter = generic
|
|
# store up to 5*100MB of logs
|
|
args = ('/var/log/monasca/persister/persister.log', 'a', 104857600, 5)
|
|
|
|
[formatter_generic]
|
|
format = %(asctime)s %(levelname)s [%(name)s][%(threadName)s] %(message)s |