spring-boot-starter-actuator
健康监控配置及使用
背景: 项目为dubbo
服务,现在需要给项目一个域名提供公网使用,运维设置必须接入健康监控,其余不清楚。
步骤:1. 引入依赖; 2. 配置propertis
文件
需要引入的依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
properties
配置文件
# 健康检查
management.context-path=/actuator
# 不进行安全检查。运维设置默认检查
management.security.enabled=false
# 不进行redis检查。运维设置默认检查
management.health.redis.enabled=false
# 不进行MongoDB检查。运维设置默认检查
management.health.mongo.enabled=false
# 不进行elasticsearch检查。运维设置默认检查
management.health.elasticsearch.enabled=false
# 允许程序与内置端点的交互
management.endpoints.web.exposure.include=env,beans
启动项目,附上两张效果图
访问:/actuator/health
访问:/actuator/beans
参考: