X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_mon%2Fcore%2Fsettings.py;h=9700af52a22506cc955ab51af0e9d18429a9c12f;hb=refs%2Fchanges%2F19%2F6719%2F11;hp=d27f0ca70c534deec1e3906e49dc837c131afca3;hpb=9608081aa7b0ff8823ddbcd1144948ee0369160e;p=osm%2FMON.git diff --git a/osm_mon/core/settings.py b/osm_mon/core/settings.py index d27f0ca..9700af5 100644 --- a/osm_mon/core/settings.py +++ b/osm_mon/core/settings.py @@ -65,6 +65,9 @@ class Config(object): CfgParam('OS_NOTIFIER_URI', "http://localhost:8662", six.text_type), CfgParam('OS_DEFAULT_GRANULARITY', "300", six.text_type), CfgParam('REQUEST_TIMEOUT', 10, int), + CfgParam('OSMMON_LOG_LEVEL', "INFO", six.text_type), + CfgParam('OSMMON_KAFKA_LOG_LEVEL', "WARN", six.text_type), + CfgParam('OSMMON_COLLECTOR_INTERVAL', 10, int), ] _config_dict = {cfg.key: cfg for cfg in _configuration}