转载

服务监控Spring Boot Actuator

(1)添加依赖

我使用的springboot的版本是2.0.5.RELEASE版本

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

(2)可以直接使用的请求

路径 作用
/autoconfig 获取应用的自动化配置报告
/beans 获取应用上下文创建的所有bean
/configprops 获取应用中配置的属性信息报告
/env 用来获取应用所有可用的环境属性报告。包括环境变量、JVM属性、应用的配置属性和命令行中的参数。
/mappings 返回所有Spring MVC的控制器映射关系报告。
/info 返回应用自定义的信息
/metrics 用来返回当前应用的各类重要度量指标,比如内存信息、线程信息、垃圾收集信息等。
/health 获取应用的各类健康指标信息。
/dump 暴露程序运行中的线程信息。
/trace 返回基本的HTTP跟踪信息。
/shutdown 关闭应用,通过endpoints.shutdown.enabled=true进行设置。

(3)出现问题

如果在访问上述端点的时候出现以下问题:

Full authentication is required to access actuator endpoints. Consider adding Spring Security or set 'management.security.enabled' to false.

解决方案:在application.properties文件中设置:

endpoints.actuator.enabled=true
endpoints.actuator.sensitive=false
endpoints.beans.sensitive=false
endpoints.beans.enabled=true
endpoints.health.sensitive=false
endpoints.health.enabled=true
#安全验证
management.security.enabled=false
原文  https://segmentfault.com/a/1190000020383635
正文到此结束
Loading...