码迷,mamicode.com
首页 > 编程语言 > 详细

spring-boot 监控 Actuator

时间:2020-12-07 12:23:22      阅读:5      评论:0      收藏:0      [点我收藏+]

标签:tar   pos   str   neu   class   cat   exp   work   访问   

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

标签:tar   pos   str   neu   class   cat   exp   work   访问   

原文地址:https://www.cnblogs.com/123-shen/p/14072294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!