You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.8 KiB
55 lines
1.8 KiB
# spring-boot-admin 配置 |
|
management: |
|
endpoints: |
|
web: |
|
# 暴露所有监控点(监控请求url地址)配置 |
|
exposure: |
|
include: '*' |
|
endpoint: |
|
health: |
|
# 何时显示完整的健康信息,默认为NEVER都不显示,WHEN_AUTHORIZED当经过授权的用户显示,ALWAYS总是展示 |
|
show-details: ALWAYS |
|
|
|
# spring-boot内置logback 配置 |
|
logging: |
|
level: |
|
org: |
|
springframework: |
|
web: info |
|
file: |
|
# 指定日志文件的位置 |
|
name: ${user.home}/logs/rocketmq/rocketmq-dashboard.log |
|
pattern: |
|
# 日志文件输出内容的格式 |
|
file: '%d{yyyy-MM-dd HH:mm:ss} [%thread] %-5level %logger{36} - %msg%n' |
|
|
|
rocketmq: |
|
config: |
|
# if this value is empty,use env value rocketmq.config.namesrvAddr NAMESRV_ADDR | now, default localhost:9876 |
|
# configure multiple namesrv addresses to manage multiple different clusters |
|
namesrvAddrs: |
|
- xxx.xxx.xxx.xxx:9876 |
|
# if you use rocketmq version < 3.5.8, rocketmq.config.isVIPChannel should be false.default true |
|
isVIPChannel: |
|
# timeout for mqadminExt, default 5000ms |
|
timeoutMillis: |
|
# rocketmq-console's data path:dashboard/monitor |
|
dataPath: /tmp/rocketmq-console/data |
|
# set it false if you don't want use dashboard.default true |
|
enableDashBoardCollect: true |
|
# set the message track trace topic if you don't want use the default one |
|
msgTrackTopicName: |
|
ticketKey: ticket |
|
# must create userInfo file: ${rocketmq.config.dataPath}/users.properties if the login is required |
|
loginRequired: false |
|
useTLS: false |
|
# set the accessKey and secretKey if you used acl,外网使用需要开启ACL权限,我们是在内网玩的,不需要配置 |
|
accessKey: # if version > 4.4.0 |
|
secretKey: # if version > 4.4.0 |
|
|
|
threadpool: |
|
config: |
|
coreSize: 10 |
|
maxSize: 10 |
|
keepAliveTime: 3000 |
|
queueSize: 5000
|
|
|