summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/log.yml
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2018-03-26 14:04:47 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2018-03-26 14:04:47 +0800
commit39f51ccb11f131cb51c9b94e4b99b5410906b26d (patch)
treea762e16b0821c141401a3a3830d45c3beb4f6ceb /lcm/lcm/log.yml
parent031a3296ed0927003ffc392bb1067a31af34dc64 (diff)
Add vfc-vnflcm log integration config
Change-Id: I43084991710ece50fde99a6a1748e2906e49091c Issue-ID: VFC-839 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'lcm/lcm/log.yml')
-rw-r--r--lcm/lcm/log.yml50
1 files changed, 50 insertions, 0 deletions
diff --git a/lcm/lcm/log.yml b/lcm/lcm/log.yml
new file mode 100644
index 00000000..016787c2
--- /dev/null
+++ b/lcm/lcm/log.yml
@@ -0,0 +1,50 @@
+version: 1
+disable_existing_loggers: False
+
+loggers:
+ lcm:
+ handlers: [vnflcmlocal_handler, vnflcm_handler]
+ level: "DEBUG"
+ propagate: False
+ django:
+ handlers: [django_handler]
+ level: "DEBUG"
+ propagate: False
+handlers:
+ vnflcmlocal_handler:
+ level: "DEBUG"
+ class:
+ "logging.handlers.RotatingFileHandler"
+ filename: "logs/runtime_lcm.log"
+ formatter:
+ "standard"
+ maxBytes: 52428800
+ backupCount: 10
+ vnflcm_handler:
+ level: "DEBUG"
+ class:
+ "logging.handlers.RotatingFileHandler"
+ filename: "/var/log/onap/vfc-gvnfm-vnflcm/runtime_lcm.log"
+ formatter:
+ "mdcFormat"
+ maxBytes: 52428800
+ backupCount: 10
+ django_handler:
+ level: "DEBUG"
+ class:
+ "logging.handlers.RotatingFileHandler"
+ filename: "logs/django.log"
+ formatter:
+ "standard"
+ maxBytes: 52428800
+ backupCount: 10
+formatters:
+ standard:
+ format:
+ "%(asctime)s:[%(name)s]:[%(filename)s]-[%(lineno)d] [%(levelname)s]:%(message)s"
+ mdcFormat:
+ format:
+ "%(asctime)s|||||%(name)s||%(thread)s||%(funcName)s||%(levelname)s||%(message)s||||%(mdc)s \t"
+ mdcfmt: "{requestID} {invocationID} {serviceName} {serviceIP}"
+ datefmt: "%Y-%m-%d %H:%M:%S"
+ (): onaplogging.mdcformatter.MDCFormatter