学习笔记:微服务-17 spring boot admin server微服务运行监控

Spring Boot Admin 是一个管理和监控Spring Boot 应用程序的开源软件。每个应用都认为是一个客户端,通过HTTP或者使用 Eureka注册到admin server中进行展示,Spring Boot Admin UI部分使用AngularJs将数据展示在前端。

服务端和客户端都需要配置

一、spring boot admin server服务端配置

1.新建一个spring boot project,pom.xml 加入依赖

    
    de.codecentric
    spring-boot-admin-starter-server
    2.1.1
   

   
    de.codecentric
    spring-boot-admin-server-ui
    2.1.1
   

2. 配置文件

server.port=8501
spring.application.name=MicroserviceAdminServer8501
spring.cloud.discovery.enabled=true
eureka.client.serviceUrl.defaultZone=http://admin:[email protected]:8101/eureka/,http://admin:[email protected]:8102/eureka/
management.endpoints.web.exposure.include="*"
management.endpoint.health.show-details=ALWAYS

3.启动项加入注解

@Configuration
@EnableAutoConfiguration
@EnableAdminServer
@SpringBootApplication
public class MicroserviceAdminServer8501Application {

    public static void main(String[] args) {
        SpringApplication.run(MicroserviceAdminServer8501Application.class, args);
    }

二、spring boot admin client客户端配置

1.在某一个spring boot 项目中增加依赖

   
        org.springframework.boot
        spring-boot-starter-actuator
   

       
            org.jolokia
            jolokia-core
       

   
    de.codecentric
    spring-boot-admin-starter-client
    2.1.1
   

2.配置文件增加

spring.boot.admin.client.url=http://centos7.linbsoft.com:8501   # admin server url
spring.boot.admin.client.instance.management-base-url=http://centos7.linbsoft.com:8803  #本项目url
spring.boot.admin.client.instance.service-base-url=http://centos7.linbsoft.com:8803
management.endpoints.web.exposure.include=*  #暴露所有监控项

三、测试

启动eureka server,admin server ,admin client项目

浏览服务端url

学习笔记:微服务-17 spring boot admin server微服务运行监控_第1张图片

 

学习笔记:微服务-17 spring boot admin server微服务运行监控_第2张图片

 

你可能感兴趣的:(系统集成,java,spring,cloud)