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
标签:web,management,spring,boot,端点,actuator,Actuator,endpoints,exposure 来源: https://www.cnblogs.com/123-shen/p/14072294.html