mirror of
https://github.com/dromara/hertzbeat.git
synced 2026-09-17 18:19:02 +00:00
add apache license for java files and some other files(checking later) add apache license for other files Co-authored-by: za-jiangliwen <liwen.jiang@zatech.com>
99 lines
2.7 KiB
YAML
99 lines
2.7 KiB
YAML
# 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
|
|
#
|
|
# http://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.
|
|
|
|
server:
|
|
port: 1157
|
|
spring:
|
|
application:
|
|
name: ${HOSTNAME:@hertzbeat@}${PID}
|
|
profiles:
|
|
active: prod
|
|
mvc:
|
|
static-path-pattern: /**
|
|
resources:
|
|
static-locations:
|
|
- classpath:/dist/
|
|
- classpath:../dist/
|
|
jackson:
|
|
default-property-inclusion: NON_EMPTY
|
|
|
|
sureness:
|
|
auths:
|
|
- digest
|
|
- basic
|
|
- jwt
|
|
|
|
---
|
|
spring:
|
|
config:
|
|
activate:
|
|
on-profile: prod
|
|
|
|
datasource:
|
|
driver-class-name: org.h2.Driver
|
|
username: sa
|
|
password: 123456
|
|
url: jdbc:h2:./data/hertzbeat;MODE=MYSQL
|
|
hikari:
|
|
max-lifetime: 120000
|
|
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
|
|
mail:
|
|
# Attention: this is mail server address.
|
|
# 请注意此为邮件服务器地址:qq邮箱为 smtp.qq.com qq企业邮箱为 smtp.exmail.qq.com
|
|
host: smtp.exmail.qq.com
|
|
username: example@tancloud.cn
|
|
# Attention: this is not email account password, this requires an email authorization code
|
|
# 请注意此非邮箱账户密码 此需填写邮箱授权码
|
|
password: example
|
|
port: 465
|
|
default-encoding: UTF-8
|
|
properties:
|
|
mail:
|
|
smtp:
|
|
socketFactoryClass: javax.net.ssl.SSLSocketFactory
|
|
ssl:
|
|
enable: true
|
|
debug: false
|
|
|
|
thymeleaf:
|
|
prefix: classpath:/templates/
|
|
check-template-location: true
|
|
cache: true
|
|
suffix: .html
|
|
mode: HTML
|
|
|
|
warehouse:
|
|
store:
|
|
td-engine:
|
|
enabled: true
|
|
driver-class-name: com.taosdata.jdbc.rs.RestfulDriver
|
|
url: jdbc:TAOS-RS://localhost:6041/hertzbeat
|
|
username: root
|
|
password: taosdata
|
|
|
|
alerter:
|
|
# custom console url
|
|
console-url: https://console.tancloud.cn
|
|
# base of alert eval interval time, unit:ms. The next time is 2 times the previous time.
|
|
alert-eval-interval-base: 600000
|
|
# max of alert eval interval time, unit:ms
|
|
max-alert-eval-interval: 86400000
|
|
# system alert(available alert, reachable alert...) trigger times
|
|
system-alert-trigger-times: 1
|