Spring Boot 之:Actuator 监控
-
在 Spring Boot 2.x 中为了安全,Actuator 只开放了两个端点 /actuator/health 和 /actuator/info。可以在配置文件中设置打开。
-
Actuator 默认所有的监控点路径都在/actuator/*,当然如果有需要这个路径也支持定制。
management.endpoints.web.base-path=/manage
Actuator 监控 | 网址 |
---|---|
actuator | http://localhost:8080/actuator |
health | http://localhost:8080/actuator/health |
info | http://localhost:8080/actuator/info |
相关文章:
相关文章 | 网址 |
---|---|
Spring Boot (十九):使用 Spring Boot Actuator 监控应用 | http://www.ityouknow.com/springboot/2018/02/06/spring-boot-actuator.html |
SpringBoot系列: Actuator监控 | https://www.cnblogs.com/harrychinese/p/SpringBoot_actuator.html |