前言碎语
spring boot项目本身提供了诸如spring-boot-starter-actuator的模块,来提供相关数值的接口查询,比如http://localhost:8080/health、http://localhost:8080/env等信息,不过下面要介绍的并不是actuatol相关,下面介绍一个整合actuator相关的项目,spring boot admin
spring boot admin相关
项目地址:https://github.com/codecentric/spring-boot-admin
参考指南:http://codecentric.github.io/spring-boot-admin/1.3.4/
我的admin server项目:https://coding.net/u/kailingchen/
client端接入很简单,如下:
maven加入
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> </dependency>application.properties文件加入如下配置
#server management &&admin
spring.boot.admin.url=http://localhost:8089
spring.boot.admin.client.enabled=true
spring.application.name=fileTransferTool
监控效果图预览