SpringCloud入门——Actuator健康监控
一、开启监控
开启Actuator只需要在pom文件中,添加actuator依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
重启服务,打开对应端口/actuator路径,例如http://localhost:8082/actuator,可以看到可以访问的端点。
现在只开启了health节点和info节点。health里面只有status信息。UP说明这个节点是启动的。
二、开启监控端点信息
当前提供的监控信息无法满足我们的需求,需要我们在配置文件中进行配置。
*代表所有节点都加载/actuator返回json
#开启所有端点
management.endpoints.web.exposure.include=*
1、开启所有端点
{
"_links": {
"self": {
"href": "http://localhost:8082/actuator",
"templated": false
},
"archaius": {
"href": "http://localhost:8082/actuator/archaius",
"templated": false
},
//bean信息
"beans": {
"href": "http://localhost:8082/actuator/beans",
"templated": false
},
"caches": {
"href": "http://localhost:8082/actuator/caches",
"templated": false
},
"caches-cache": {
"href": "http://localhost:8082/