Spring Boot Admin是一个开源社区项目,用于管理和监控SpringBoot应用程序。 应用程序作为Spring Boot Admin Client向为Spring Boot Admin Server注册(通过HTTP)或使用SpringCloud注册中心(例如Eureka,Consul)发现。 UI是AngularJs的应用程序,展示Spring Boot Admin Client的Actuator端点上的一些监控。
可以通过 Spring Boot Admin 浏览所有被监控的 Spring Boot 项目,详细的 Health 信息、内存信息、JVM 系统和环境属性、垃圾回收信息等。
SpringBoot Admin 有两种角色,一种是Client客户端,被监控的应用,另一种是Server服务端,监控应用。
二、如何使用Spring Boot AdminSpring Boot Admin Server
1、在 POM.xml 文件添加服务端启动器依赖
1
2
3
4
5
6
|
<!-- https: //mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-server -->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
<version> 2.2 . 3 </version>
</dependency>
|
2、在application.yml文件配置端口,不能与客户端端口相同
1
2
|
server:
port: 9090
|
3、修改启动类,添加 @EnableAdminServer 注解,开启SpringBoot Admin 服务端
1
2
3
4
5
6
7
|
@SpringBootApplication
@EnableAdminServer
public class SpringbootadminApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootadminApplication. class , args);
}
}
|
Spring Boot Admin Client
1、在 POM.xml 文件添加客户端启动器依赖(保持与服务端依赖版本相同)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!-- https: //mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
<version> 2.2 . 3 </version>
</dependency>
<!-- SpringBoot 度量指标监控与健康检查-->
<!-- https: //mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-actuator -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version> 2.2 . 7 .RELEASE</version>
</dependency>
|
2、在application.yml文件指定服务端的访问路径,yml 的配置文件的特殊符号要加上单引号
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
spring:
boot:
admin:
client:
url: http: //localhost:9090
---
management:
endpoints:
web:
#配置访问端点的根路径
base-path: /actuator
#配置开启其他端点的URI
exposure:
include: '*'
#yml 的配置文件的特殊符号要加上单引号
|
访问http://localhost:9090时会出现这个UI界面
点击应用墙
可以看得到应用的一些信息,内存,性能等等
到此这篇关于 Spring Boot Admin 进行项目监控管理的方法的文章就介绍到这了,更多相关 Spring Boot Admin 项目监控管理内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/Hello_ChenLiYan/article/details/106113969