[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / multicloud / charts / multicloud-azure / resources / config / log / log.yml
1 # Copyright © 2018  AT&T, Amdocs, Bell Canada Intellectual Property.  All rights reserved.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #       http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 version: 1
15 disable_existing_loggers: False
16
17 loggers:
18     vio:
19       handlers: [azure_handler]
20       level: "DEBUG"
21       propagate: False
22 handlers:
23     vio_handler:
24         level: "DEBUG"
25         class: "logging.handlers.RotatingFileHandler"
26         filename: "/var/log/onap/multicloud/azure/azure.log"
27         formatter: "mdcFormat"
28         maxBytes: 52428800
29         backupCount: 10
30 formatters:
31     standard:
32         format: "%(asctime)s|||||%(name)s||%(thread)||%(funcName)s||%(levelname)s||%(message)s"
33     mdcFormat:
34         format: "%(asctime)s|||||%(name)s||%(thread)s||%(funcName)s||%(levelname)s||%(message)s||||%(mdc)s \t"
35         mdcfmt: "{requestID} {invocationID} {serviceName} {serviceIP}"
36         datefmt: "%Y-%m-%d %H:%M:%S"
37         (): onaplogging.mdcformatter.MDCFormatter