Raise the logger level from ALL to INFO
[holmes/engine-management.git] / engine-d-standalone / src / main / assembly / conf / engine-d.yml
1 #
2 # Copyright 2017 ZTE Corporation.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16 server:
17   type: simple
18   rootPath: '/api/holmes-engine-mgmt/v1/*'
19   applicationContextPath: /
20   adminContextPath: /admin
21   connector:
22     type: https
23     port: 9102
24     keyStorePath: /opt/onap/conf/holmes.keystore
25     keyStorePassword: holmes
26     validateCerts: false
27     validatePeers: false
28
29
30 # Logging settings.
31 logging:
32
33   # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
34   level: INFO
35
36   # Logger-specific levels.
37   loggers:
38
39     # Sets the level for 'com.example.app' to DEBUG.
40     org.onap.holmes.engine: ALL
41
42   appenders:
43     - type: console
44       threshold: INFO
45       timeZone: UTC
46       logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
47     - type: file
48       threshold: ERROR
49       logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
50       currentLogFilename: /var/log/ONAP/holmes/engine-d-error.log
51       archivedLogFilenamePattern: /var/log/ONAP/holmes/zip/engine-d-error-%d{yyyy-MM-dd}.log.gz
52       archivedFileCount: 7
53     - type: file
54       threshold: INFO
55       logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
56       currentLogFilename: /var/log/ONAP/holmes/engine-d-debug.log
57       archivedLogFilenamePattern: /var/log/ONAP/holmes/zip/engine-d-debug-%d{yyyy-MM-dd}.log.gz
58       archivedFileCount: 7
59
60
61 database:
62   driverClass: org.postgresql.Driver
63   user: holmes
64   password: holmespwd
65   url: jdbc:postgresql://127.0.0.1:5432/holmes
66   properties:
67     charSet: UTF-8
68   maxWaitForConnection: 1s
69   validationQuery: "/* MyService Health Check */ SELECT 1"
70   minSize: 8
71   maxSize: 100
72   checkConnectionWhileIdle: false
73   evictionInterval: 10s
74   minIdleTime: 1s
75