uwsgi auto-reload on logging change

This commit is contained in:
AlanCoding
2016-12-06 19:18:14 -05:00
parent 24c208e243
commit 5ff62c97b6
3 changed files with 7 additions and 8 deletions

View File

@@ -85,6 +85,10 @@ def celery_startup(conf=None, **kwargs):
logger.error("Failed to rebuild schedule {}: {}".format(sch, e))
def uwsgi_reload():
os.system("echo r > /tmp/awxfifo")
@task(queue='broadcast_all')
def clear_cache_keys(cache_keys):
set_of_keys = set([key for key in cache_keys])
@@ -92,12 +96,7 @@ def clear_cache_keys(cache_keys):
cache.delete_many(set_of_keys)
for setting_key in set_of_keys:
if setting_key.startswith('LOG_AGGREGATOR_'):
LOGGING = settings.LOGGING
if settings.LOG_AGGREGATOR_ENABLED:
LOGGING['handlers']['http_receiver']['class'] = 'awx.main.utils.handlers.HTTPSHandler'
else:
LOGGING['handlers']['http_receiver']['class'] = 'awx.main.utils.handlers.HTTPSNullHandler'
configure_logging(settings.LOGGING_CONFIG, LOGGING)
uwsgi_reload()
break

View File

@@ -999,7 +999,7 @@ LOGGING = {
'propagate': False,
},
'awx.analytics': {
'handlers': ['null'],
'handlers': ['http_receiver'],
'level': 'INFO',
'propagate': False
},