前言
该模块增加了很多监控点,使用
http://{ip}:{port}/{endpoint}
来访问这些断点,了解程序的运行情况。这是一个完全暴露自身信息的模块,主要作用就是作为监控和管理的。
引入依赖
1 | <dependency> |
注意这里也需要添加starter-web
模块。
查看日志
启动程序后,通过查看日志,我们很清晰的看到这里的actuator地址只有这三个。分别是/actuator/health
、/actuator/info
、/actuator
1 | 2018-12-09 17:54:36.904 INFO 14364 --- [ main] s.b.a.e.w.s.WebMvcEndpointHandlerMapping : Mapped "{[/actuator/health],methods=[GET],produces=[application/vnd.spring-boot.actuator.v2+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(javax.servlet.http.HttpServletRequest,java.util.Map<java.lang.String, java.lang.String>) |
如果我们需要查看其他的监控信息,则需要在配置中将其打开;在这里提示,springBoot2.x之后配置方式和之前有所改变。
/actuator 所有监控地址
我们在地址栏中访问这个地址,详细的看到所有监点。正如上面日志中所提到的只开放了这三个监控点。其他的监控信息,我们配置之后就可以看到。1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16{
"_links": {
"self": {
"href": "http://localhost:8080/actuator",
"templated": false
},
"health": {
"href": "http://localhost:8080/actuator/health",
"templated": false
},
"info": {
"href": "http://localhost:8080/actuator/info",
"templated": false
}
}
}
/actuator/health 服务是否启动
1 | { |
Up
表示正常运行,除此之外还有DOWN
、OUT_OF_SERVICE
、UNKNOWN
等状态。
/info
info属性来自定义info端点公开的数据。
配置开启所有监控端点
1 | management: |
开启所有监控端点,运行程序,可以在日志当中看到映射mapping地址;同样也可以在程序正常启动后通过访问http://localhost:8080/actuator
后的json数据中显示所监控的信息。
1 | { |
management.endpoints.web.exposure.include:
默认情况只是开启了/health 和 /info端点,想要暴露所有的端点只需要设置成*
1
2
3
4
5management:
endpoints:
web:
exposure:
include: "*"management.server.servlet.context-path:
设置管理端点的上下文路径,默认是””,此时设置了,地址栏访问:http://localhost:9000/au/actuator
1
2
3
4management:
server:
servlet:
context-path: /aumanagement.server.port:
设置管理服务的端口,默认和应用端口保持一致。1
2
3management:
server:
port: 9000
关于这些值配置,在spring-boot-actuator-autoconfigure-{xxx}.jar
这个jar包中有一个spring-configuration-metadata.json
包含了
1 | management: |
现将配置修改如上,/actuator 在 management.endpoints.web.base-path 的根目录中有一个映射,它提供了到所有暴露端点的链接。现将其修改成了/monitor
,默认为/actuator
。info
如上所说自定义属性系列信息,在此打印服务名称和服务编码和基础环境等信息。
联系
聪聪的独立博客 ,一个喜欢技术,喜欢钻研的95后。如果你看到这篇文章,千里之外,我在等你联系。