blob: 9a16390856de5c887114815684bd009acf2520fd [file] [log] [blame]
GuangrongFucc1316b2021-02-03 17:29:08 +08001#
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#
16server:
17 type: simple
18 rootPath: '/api/holmes-engine-mgmt/v1/*'
19 applicationContextPath: /
20 adminContextPath: /admin
21 connector:
Andreas Geissler4a5c1bd2023-03-01 11:23:32 +010022 type: http
GuangrongFucc1316b2021-02-03 17:29:08 +080023 port: 9102
GuangrongFucc1316b2021-02-03 17:29:08 +080024 validateCerts: false
25 validatePeers: false
26
27
28# Logging settings.
29logging:
30
31 # The default level of all loggers. Can be OFF, ERROR, WARN, INFO, DEBUG, TRACE, or ALL.
GuangrongFu717d30b2022-04-26 16:05:53 +080032 level: INFO
GuangrongFucc1316b2021-02-03 17:29:08 +080033
34 # Logger-specific levels.
35 loggers:
36
37 # Sets the level for 'com.example.app' to DEBUG.
38 org.onap.holmes.engine: ALL
39
40 appenders:
41 - type: console
GuangrongFu717d30b2022-04-26 16:05:53 +080042 threshold: INFO
GuangrongFucc1316b2021-02-03 17:29:08 +080043 timeZone: UTC
44 logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
45 - type: file
46 threshold: ERROR
47 logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
48 currentLogFilename: /var/log/ONAP/holmes/engine-d-error.log
49 archivedLogFilenamePattern: /var/log/ONAP/holmes/zip/engine-d-error-%d{yyyy-MM-dd}.log.gz
50 archivedFileCount: 7
51 - type: file
GuangrongFu717d30b2022-04-26 16:05:53 +080052 threshold: INFO
GuangrongFucc1316b2021-02-03 17:29:08 +080053 logFormat: "%d{yyyy-MM-dd HH:mm:ss SSS} %-5p [%c][%t] invocationID:{InvocationID} - %m%n"
54 currentLogFilename: /var/log/ONAP/holmes/engine-d-debug.log
55 archivedLogFilenamePattern: /var/log/ONAP/holmes/zip/engine-d-debug-%d{yyyy-MM-dd}.log.gz
56 archivedFileCount: 7
57
58
59database:
60 driverClass: org.postgresql.Driver
61 user: ${JDBC_USERNAME}
62 password: ${JDBC_PASSWORD}
63 url: jdbc:postgresql://${URL_JDBC}:${DB_PORT}/${DB_NAME}
64 properties:
65 charSet: UTF-8
66 maxWaitForConnection: 1s
67 validationQuery: "/* MyService Health Check */ SELECT 1"
68 minSize: 8
69 maxSize: 100
70 checkConnectionWhileIdle: false
71 evictionInterval: 10s
72 minIdleTime: 1s