[CONSUL] Add limits to consul chart.
[oom.git] / kubernetes / multicloud / charts / multicloud-starlingx / resources / config / log / log.yml
1 # Copyright (c) 2019 Intel Corporation.
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     starlingx_base:
19       handlers: [starlingx_handler]
20       level: "DEBUG"
21       propagate: False
22     starlingx:
23       handlers: [starlingx_handler]
24       level: "DEBUG"
25       propagate: False
26     newton_base:
27       handlers: [starlingx_handler]
28       level: "DEBUG"
29       propagate: False
30     common:
31       handlers: [starlingx_handler]
32       level: "DEBUG"
33       propagate: False
34
35 handlers:
36     starlingx_handler:
37         level: "DEBUG"
38         class: "logging.handlers.RotatingFileHandler"
39         filename: "/var/log/onap/multicloud/openstack/starlingx/starlingx.log"
40         formatter: "mdcFormat"
41         maxBytes: 52428800
42         backupCount: 10
43
44 formatters:
45     standard:
46         format: "%(asctime)s|||||%(name)s||%(thread)||%(funcName)s||%(levelname)s||%(message)s"
47     mdcFormat:
48         format: "%(asctime)s|||||%(name)s||%(thread)s||%(funcName)s||%(levelname)s||%(message)s||||%(mdc)s \t"
49         mdcfmt: "{requestID} {invocationID} {serviceName} {serviceIP}"
50         datefmt: "%Y-%m-%d %H:%M:%S"
51         (): onaplogging.mdcformatter.MDCFormatter