aboutsummaryrefslogtreecommitdiffstats
path: root/etc/config.json
diff options
context:
space:
mode:
Diffstat (limited to 'etc/config.json')
-rw-r--r--etc/config.json38
1 files changed, 38 insertions, 0 deletions
diff --git a/etc/config.json b/etc/config.json
new file mode 100644
index 0000000..211ce16
--- /dev/null
+++ b/etc/config.json
@@ -0,0 +1,38 @@
+{
+ "config_pwd" : "onap-secret@2017!",
+ "wservice_port" : 25577,
+ "policy_handler" : {
+ "system" : "policy_handler"
+ },
+ "logging" : {
+ "version": 1,
+ "disable_existing_loggers": false,
+ "formatters": {
+ "local": {
+ "format": "%(asctime)s.%(msecs)03d %(levelname)+8s %(threadName)s %(name)s.%(funcName)s: %(message)s",
+ "datefmt": "%Y%m%d_%H%M%S"
+ }
+ },
+ "handlers": {
+ "file": {
+ "class": "logging.handlers.TimedRotatingFileHandler",
+ "formatter": "local",
+ "filename" : "logs/policy_handler.log",
+ "level": "DEBUG",
+ "when": "midnight",
+ "interval": 1,
+ "backupCount": 10,
+ "delay": true
+ }
+ },
+ "loggers": {
+ "policy_handler" : {
+ "handlers": ["file"],
+ "propagate":false
+ }
+ },
+ "root": {
+ "handlers": ["file"]
+ }
+ }
+} \ No newline at end of file