Spring-boot-actuator的解析

spring-boot-actuator的作用: 在生产环境中,需要定时或者定期的监控服务的运行情况,spring-boot-actuator为我们提供了许多监控所需的接口; 单独使用spring-boot-actuator的依赖引入(没有http调用): <dependency> <groupId>org.springframework-boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> 如果是http调用的方式则还需要添加下面的依赖: <dependency> <groupId>org.springframework-boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> spring-boot-actuator常用的端点以及描述: ——————————————————————————————————————————- | 端点 | 描述 |HTTP方法| |—————————————————————————————————————————–
| | autoconfig | 显示自动配置的信息 | GET | | beans | 显示应用程序上下文所有的spring bean | GET | | configprops | 显示所有的@configurationProperties的配置属性列表 | GET | | dump | 显示线程活动的快照 | GET | | env | 显示应用的环境变量 | GET | | health | 显示应用信息的健康指标,这些值由HealthIndicator的实现类提供 | GET | | info | 显示应用的信息,可使用info.*属性自定义info端点公开的数据 | GET | | mappings | 显示所有的url路径 | GET | | metrics | 显示应用的度量标准信息 | GET | | shutdown | 关闭应用
(默认不启用,若启用则需设置endpoints.shutdown.enabled=true) | POST | | trace | 显示跟踪信息
(默认情况下为最近100个HTTP请求) | GET | ——————————————————————————————————————————– 实例: 在添加了依赖之后,我们需要查看应用的健康指标: 访问路径: http://127.0.0.1:8080/health 返回结果: {“status”:”UP”,”diskSpace”: {“status”:”UP”,”total”:483184865280,”free”:471079186432,”threshold”:10485760},”db”:{“status”:”UP”,”database”:”MySQL”,”hello”:1}} 其中UP表示运行正常,除UP之外,还有DOWN,OUT_OF_SERVICE,UN_KNOW等状态

若我们需要查看info信息: 访问路径: http://127.0.0.1:8001/info 返回结果: {} 由上面的结果我们可知info端点默认的没有返回给我们任何信息,现在我们可用info.*来自定义info端点公开的数据: 在application.yml中添加如下配置: info: app: name:@project.artifactId@ encoding:@project.build.sourceEncoding@ java: source:@java.version@ target:@java.version@ 然后继续访问http://127.0.0.1:8001/info 返回结果: {“name”:”scCustomer”,”encoding”:”UTF-8″,”java”:{“source”:”1.8.0_144″,”target”:”1.8.0_144″}} 其他端点的使用请参考spring-boot文档自行测试。

    原文作者:Spring Boot
    原文地址: https://blog.csdn.net/u011539689/article/details/78426514
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞