步骤:
1:引入spring-boot-starter-actuator,可以使用Spring Boot为我们提供的准生产环境下的应用监控和管理功能
<dependency> |
2:在配置文件中开放所有的web endpoints
#开放所有的web endpoints |
3:访问http://localhost:8080/actuator 可以查看到所有的监控节点的访问路径
4:监控和管理端点的描述
|
2024-03-14 23:51:05
步骤:
1:引入spring-boot-starter-actuator,可以使用Spring Boot为我们提供的准生产环境下的应用监控和管理功能
<dependency> |
2:在配置文件中开放所有的web endpoints
#开放所有的web endpoints |
3:访问http://localhost:8080/actuator 可以查看到所有的监控节点的访问路径
4:监控和管理端点的描述
|