spring-boot 监控 Actuator
Posted 追风筝的少年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring-boot 监控 Actuator相关的知识,希望对你有一定的参考价值。
springboot 提供了对项目的监控功能。
1.首先添加依赖包
implementation ‘org.springframework.boot:spring-boot-starter-actuator‘
2.application.yml 端点配置
因为actuator默认只支持端点 /health、/info 所以访问 /env 会出现404页面。
在application.properties中配置端点, 暴露部分端点 management.endpoints.web.exposure.include=info,health,beans,env 暴露所有端点 management.endpoints.web.exposure.include=* 不暴露beans端点 management.endpoints.web.exposure.exclude=beans 在上述配置中,首先使用 management.endpoints.web.exposure.include 暴露所有的端点,接着使用management.endpoints .web.exposure.exclud 排除 en 端点,这样就能够暴露除 env 外的所有 ctuator 端点了。
3.浏览器访问
http://127.0.0.1:8080/actuator/health 访问项目监控需要加前缀 /actuator
以上是关于spring-boot 监控 Actuator的主要内容,如果未能解决你的问题,请参考以下文章
spring-boot Actuator 连同 Spring Security 和 Form Basic Auth