- spring-boot-actuator模块提供了一个监控和管理生产环境的模块,可以使用
http、jmx、ssh、telnet
等拉管理和监控应用。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
- *在web情景下为了安全没有暴露出来,因此我们需要在application.properties文件中设置:
management.endpoints.web.exposure.include=*
http://ip:port/actuator
,可能看到所有端点:
HTTP****方法 | 路径 | 描述 | 鉴权 |
---|---|---|---|
GET | /autoconfig | 查看自动配置的使用情况,该报告展示所有auto-configuration候选者及它们被应用或未被应用的原因 | true |
GET | /configprops | 显示一个所有@ConfigurationProperties的整理列表 | true |
GET | /beans | 显示一个应用中所有Spring Beans的完整列表 | true |
GET | /dump | 打印线程栈 | true |
GET | /env | 查看所有环境变量 | true |
GET | /env/{name} | 查看具体变量值 | true |
GET | /health | 查看应用健康指标 | false |
GET | /info | 查看应用信息 | false |
GET | /mappings | 查看所有url映射 | true |
GET | /metrics | 查看应用基本指标 | true |
GET | /metrics/{name} | 查看具体指标 | true |
POST | /shutdown | 允许应用以优雅的方式关闭(默认情况下不启用) | true |
GET | /trace | 查看基本追踪信息 | true |