spring-boot 监控 Actuator
2021-03-12 19:33
标签:tar pos str neu class cat exp work 访问 springboot 提供了对项目的监控功能。 1.首先添加依赖包 因为actuator默认只支持端点 /health、/info 所以访问 /env 会出现404页面。 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.htmlimplementation ‘org.springframework.boot:spring-boot-starter-actuator‘
2.application.yml 端点配置
在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.浏览器访问
上一篇:C++—读取配置文档
文章标题:spring-boot 监控 Actuator
文章链接:http://soscw.com/index.php/essay/63800.html