### # app configuration # https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html ### [app:main] use = egg:clmcservice pyramid.reload_templates = false pyramid.debug_authorization = false pyramid.debug_notfound = false pyramid.debug_routematch = false pyramid.default_locale_name = en aggregator_running = false aggregator_report_period = 5 aggregator_database_name = E2EMetrics aggregator_database_url = http://172.40.231.51:8086 ### # wsgi server configuration ### [server:main] use = egg:waitress#main listen = *:8080 ### # logging configuration # https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html ### [loggers] keys = root, clmcservice [handlers] keys = console [formatters] keys = generic [logger_root] level = WARN handlers = console [logger_clmcservice] level = WARN handlers = qualname = clmcservice [handler_console] class = StreamHandler args = (sys.stderr,) level = NOTSET formatter = generic [formatter_generic] format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s