diff options
author | kj <keren.joseph@amdocs.com> | 2018-04-02 13:34:07 +0300 |
---|---|---|
committer | Mandeep Khinda <mandeep.khinda@amdocs.com> | 2018-04-06 18:46:11 +0000 |
commit | 41ef22e8cb76ddf3480cbd119bd741db62cfb578 (patch) | |
tree | 3c79e9c1bcb35555ae239af43102b190b9631eeb /kubernetes/multicloud/charts/multicloud-windriver/resources/config/log/log.yml | |
parent | 72f4e9b34adb4b2e134ee44e9fe0a2e039453378 (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-windriver/resources/config/log/log.yml')
-rw-r--r-- | kubernetes/multicloud/charts/multicloud-windriver/resources/config/log/log.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/kubernetes/multicloud/charts/multicloud-windriver/resources/config/log/log.yml b/kubernetes/multicloud/charts/multicloud-windriver/resources/config/log/log.yml new file mode 100644 index 0000000000..6c1957db33 --- /dev/null +++ b/kubernetes/multicloud/charts/multicloud-windriver/resources/config/log/log.yml @@ -0,0 +1,34 @@ +version: 1 +disable_existing_loggers: False + +loggers: + titanium_cloud: + handlers: [titanium_cloud_handler] + level: "DEBUG" + propagate: False + newton_base: + handlers: [titanium_cloud_handler] + level: "DEBUG" + propagate: False + common: + handlers: [titanium_cloud_handler] + level: "DEBUG" + propagate: False + +handlers: + titanium_cloud_handler: + level: "DEBUG" + class: "logging.handlers.RotatingFileHandler" + filename: "/var/log/onap/multicloud/openstack/windriver/titanium_cloud.log" + formatter: "mdcFormat" + maxBytes: 1024*1024*50 + 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 |