天天看點

springboot2.x中的服務監控

想給服務添加一個監控,看看網上各位前輩的,基本都是基于springboot1.x的,springboot更新到2.0以後和1.x還是有很多不一樣的,那麼2.0以後怎麼使用admin監控呢?

先看下圖的managment.security.enable,現在已經是過時API了,那麼我們必須要更新知識庫了。

springboot2.x中的服務監控

security.png

總體思路

和之前的思路一樣,分為服務端和用戶端。

服務端配置pom

用戶端添加監控url配置

server端

1、建立項目,引入依賴,我的完整pom如下

<dependencies>
        <!--表示為web工程-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <!--暴露各種名額-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-server</artifactId>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-server-ui</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-webflux</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jolokia</groupId>
            <artifactId>jolokia-core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
           

2、配置yml

server:
  port: 8888
eureka:
  instance:
    hostname: localhost
    prefer-ip-address: true
    lease-renewal-interval-in-seconds: 10
  client:
    registry-fetch-interval-seconds: 5
    registerWithEureka: false
    fetchRegistry: false
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/
management:
  endpoints:
    web:
      exposure:
        include: "*"
  endpoint:
    health:
      show-details: always
spring:
  application:
    name: spring-boot-admin-server
           

3、啟用服務監控

@Configuration
@EnableAutoConfiguration
@EnableAdminServer
public class ActuatorApplication {
    public static void main(String[] args) {
        SpringApplication.run(ActuatorApplication.class, args);
    }
}
           

client端

在需要監控的項目中添加以下配置

1、添加pom依賴

<dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-starter-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jolokia</groupId>
            <artifactId>jolokia-core</artifactId>
        </dependency>
           

2、添加yml配置

spring:
  application:
      name: boot-service
  boot:
    admin:
      client:
        url: http://localhost:8888
           

檢視監控

先啟動剛才建立的服務監控項目,然後再分别啟動需要監控的項目,然後通路

http://localhost:8888(

根據你的實際情況),通路結果如下

springboot2.x中的服務監控

飄紅.png

一眼就看到一個不正常的服務,我們點進去看一下出了什麼問題,因為我的服務确實在正常運作,可以正常通路

springboot2.x中的服務監控

5.png

結果就很明顯了,一看network error,明顯是網絡不通,可是服務在正常運作,那麼基本就是權限的問題了,因為我的eboot-admin添加了shiro的權限攔截,是以上面的/actuator/**都被攔截了,我們在shiro中将該路徑放行

filterChainDefinitionMap.put("/actuator/**", "anon");
           

再次通路,結果如下

springboot2.x中的服務監控

不再紅.png

springboot2.x中的服務監控

applications.png

springboot2.x中的服務監控

journal.png

服務出現問題,applications會有如下提示,一看offline就······

springboot2.x中的服務監控

挂掉挂掉.png

至此,springboot2.0的服務監控已經搞定。同時actuator也可以配合security做權限控制,但是我們監控的這些服務大部分可能都是在内網環境使用,後期我會加上帶權限的監控,所有源碼已上傳到gitee,【

戳我擷取源碼

】,後期新增功能和代碼會随時上傳,需要的小夥伴随時擷取哦

當然,如果能幫我點個star就更好了^_^