summaryrefslogtreecommitdiffstats
path: root/kubernetes/multicloud/charts/multicloud-vio/resources/config
diff options
context:
space:
mode:
authorkj <keren.joseph@amdocs.com>2018-04-02 13:34:07 +0300
committerMandeep Khinda <mandeep.khinda@amdocs.com>2018-04-06 18:46:11 +0000
commit41ef22e8cb76ddf3480cbd119bd741db62cfb578 (patch)
tree3c79e9c1bcb35555ae239af43102b190b9631eeb /kubernetes/multicloud/charts/multicloud-vio/resources/config
parent72f4e9b34adb4b2e134ee44e9fe0a2e039453378 (diff)
Add standardized helm chart for multicloud
-mk: updating umbrella requirements.yaml Issue-ID: OOM-744 Change-Id: Iae202a60ff5fd8d4fa98bd29184df1444b616186 Signed-off-by: kj <keren.joseph@amdocs.com> Signed-off-by: Mandeep Khinda <mandeep.khinda@amdocs.com>
Diffstat (limited to 'kubernetes/multicloud/charts/multicloud-vio/resources/config')
-rw-r--r--kubernetes/multicloud/charts/multicloud-vio/resources/config/log/log.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/kubernetes/multicloud/charts/multicloud-vio/resources/config/log/log.yml b/kubernetes/multicloud/charts/multicloud-vio/resources/config/log/log.yml
new file mode 100644
index 0000000000..91654645c8
--- /dev/null
+++ b/kubernetes/multicloud/charts/multicloud-vio/resources/config/log/log.yml
@@ -0,0 +1,24 @@
+version: 1
+disable_existing_loggers: False
+
+loggers:
+ vio:
+ handlers: [vio_handler]
+ level: "DEBUG"
+ propagate: False
+handlers:
+ vio_handler:
+ level: "DEBUG"
+ class: "logging.handlers.RotatingFileHandler"
+ filename: "/var/log/onap/multicloud/vio/vio.log"
+ formatter: "mdcFormat"
+ maxBytes: 52428800
+ backupCount: 10
+formatters:
+ standard:
+ format: "%(asctime)s|||||%(name)s||%(thread)||%(funcName)s||%(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 \ No newline at end of file