# 健康指示器 / Health Indicator
配置服务器附带一个健康指示器,用于检查配置的环境存储库是否工作。 默认情况下会像环境存储库(EnvironmentRepository)请求 application=app、profile=default、label=default 的文件
可以通过配置检查更多的文件
spring:
cloud:
config:
server:
health:
repositories:
myservice:
label: mylabel
myservice-dev:
name: myservice
profiles: development
enabled: false # 可以关闭健康检查
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
tip
此配置没有测试通,不知道是什么意思,没有看到有日志;