forked from apache/bigtop-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.yml
More file actions
91 lines (82 loc) · 2.38 KB
/
Copy pathapplication.yml
File metadata and controls
91 lines (82 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
bigtop:
manager:
orm:
# hibernate/eclipselink(default=eclipselink)
type: eclipselink
spring:
banner:
charset: utf-8
application:
name: bigtop-manager-server
main:
banner-mode: log
datasource:
driver-class-name: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/bigtop_manager
username: postgres
password: postgres
type: com.zaxxer.hikari.HikariDataSource
hikari:
auto-commit: true
connection-test-query: select 1
connection-timeout: 30000
idle-timeout: 600000
initialization-fail-timeout: 1
leak-detection-threshold: 0
maximum-pool-size: 50
minimum-idle: 5
pool-name: BigtopManagerHikariCP
validation-timeout: 3000
jackson:
default-property-inclusion: non-null
jpa:
show-sql: true
properties:
eclipselink:
ddl-generation: create-or-extend-tables
weaving: false
persistence-context:
persist-on-commit: false
cache:
shared:
default: false
logging:
connection: false
logger: org.eclipse.persistence.logging.slf4j.SLF4JLogger
parameters: true
session: false
thread: false
timestamp: false
level:
connection: FINE
sql: FINEST
jpa: FINER
messages:
basename: i18n/messages
thymeleaf:
cache: false
springdoc:
packages-to-scan: org.apache.bigtop.manager.server
swagger-ui:
defaultModelsExpandDepth: -1
monitoring:
prometheus-host: "http://localhost:9090"
agent-host-job-name: "bm-agent-host"