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

 

上一篇:MediaPlayer: MediaPlayer中的prepare方法和prepareAsync方法的区别


下一篇:Android进阶:自定义视频播放器开发(上)