我们知道spring-boot-actuator暴露了大量统计和监控信息的端点,spring-boot-admin
就是为此提供的监控项目。

先来看看大概会提供什么样的功能

从图中可以看出,主要内容都是由spring boot actuator来提供的。更多关于actuator的信息参见Springboot actuator

接下来,hello world时间。

server端

server端是一个单独的springboot项目,主要负责收集和展示监控指标,提供了ui page。

项目地址: https://github.com/Ryan-Miao/springboot-admin-demo

新建一个springboot项目,可以使用idea自带的spring initializr. 主要添加以下两个依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<dependencyManagement>
<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-dependencies</artifactId>
<version>${spring-boot-admin.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-server</artifactId>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-server-ui</artifactId>
</dependency>
</dependencies>

在启动类上添加@EnableAdminServer

在配置文件中设置服务地址,这里假设为8081

1
server.port=8081

启动。

client 端

client端是指我们正常的app,我们的spring boot项目就是。在原有的基础上添加依赖

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>de.codecentric</groupId>
<artifactId>spring-boot-admin-starter-client</artifactId>
</dependency>


<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${springboot.version}</version>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>

</plugins>
</build>

之后配置相关信息:

client端添加admin的url,这里暂时忽略spring security

1
2
3
4
5
6
7
spring:
boot:
admin:
url: http://localhost:8081
management:
security:
enabled: false

然后,启动我们的app。访问localhost:8081就可以看到文章开始图片里的信息了。

更多文档: https://codecentric.github.io/spring-boot-admin/1.5.0/#_what_is_spring_boot_admin