中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBootAdmin微服務應用監控怎么實現

發布時間:2021-11-02 16:33:28 來源:億速云 閱讀:111 作者:小新 欄目:編程語言

小編給大家分享一下SpringBootAdmin微服務應用監控怎么實現,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Spring Boot Admin 簡介

SpringBoot應用可以通過Actuator來暴露應用運行過程中的各項指標,Spring Boot Admin通過這些指標來監控SpringBoot應用,然后通過圖形化界面呈現出來。Spring Boot Admin不僅可以監控單體應用,還可以和Spring Cloud的注冊中心相結合來監控微服務應用。

Spring Boot Admin 可以提供應用的以下監控信息:

監控應用運行過程中的概覽信息;  度量指標信息,比如JVM、Tomcat及進程信息;  環境變量信息,比如系統屬性、系統環境變量以及應用配置信息;  查看所有創建的Bean信息;  查看應用中的所有配置信息;  查看應用運行日志信息;  查看JVM信息;  查看可以訪問的Web端點;  查看HTTP跟蹤信息。

這里我們創建一個admin-server模塊來作為監控中心演示其功能。

在pom.xml中添加相關依賴:

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId></dependency>

在application.yml中進行配置:

spring: application: name: admin-serverserver: port: 9301

在啟動類上添加@EnableAdminServer來啟用admin-server功能:

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

創建admin-client模塊

這里我們創建一個admin-client模塊作為客戶端注冊到admin-server。

在pom.xml中添加相關依賴:

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

在application.yml中進行配置:

spring: application: name: admin-client boot: admin: client: url: http://localhost:9301 #配置admin-server地址server: port: 9305management: endpoints: web: exposure: include: '*' endpoint: health: show-details: alwayslogging: file: admin-client.log #添加開啟admin的日志監控

啟動admin-server和admin-client服務。

監控信息演示

訪問如下地址打開Spring Boot Admin的主頁: http://localhost:9301

點擊wallboard按鈕,選擇admin-client查看監控信息;

監控信息概覽;

度量指標信息,比如JVM、Tomcat及進程信息;

環境變量信息,比如系統屬性、系統環境變量以及應用配置信息;

查看所有創建的Bean信息;

查看應用中的所有配置信息;

查看日志信息,需要添加以下配置才能開啟;

logging: file: admin-client.log #添加開啟admin的日志監控

查看JVM信息;

查看可以訪問的Web端點;

查看HTTP跟蹤信息;

結合注冊中心使用

Spring Boot Admin結合Spring Cloud 注冊中心使用,只需將admin-server和注冊中心整合即可,admin-server 會自動從注冊中心獲取服務列表,然后挨個獲取監控信息。這里以Eureka注冊中心為例來介紹下該功能。

修改admin-server 在pom.xml中添加相關依賴:

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>

在application-eureka.yml中進行配置,只需添加注冊中心配置即可:

spring: application: name: admin-serverserver: port: 9301eureka: client: register-with-eureka: true fetch-registry: true service-url:  defaultZone: http://localhost:8001/eureka/

在啟動類上添加@EnableDiscoveryClient來啟用服務注冊功能:

@EnableDiscoveryClient@EnableAdminServer@SpringBootApplicationpublic class AdminServerApplication { public static void main(String[] args) {  SpringApplication.run(AdminServerApplication.class, args); }}

修改admin-client

在pom.xml中添加相關依賴:

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>

在application-eureka.yml中進行配置,刪除原來的admin-server地址配置,添加注冊中心配置即可:

spring: application: name: admin-clientserver: port: 9305management: endpoints: web:  exposure:  include: '*' endpoint: health:  show-details: alwayslogging: file: admin-client.log #添加開啟admin的日志監控eureka: client: register-with-eureka: true fetch-registry: true service-url:  defaultZone: http://localhost:8001/eureka/

在啟動類上添加@EnableDiscoveryClient來啟用服務注冊功能:

@EnableDiscoveryClient@SpringBootApplicationpublic class AdminClientApplication { public static void main(String[] args) {  SpringApplication.run(AdminClientApplication.class, args); }}

功能演示

啟動eureka-server,使用application-eureka.yml配置啟動admin-server,admin-client;

查看注冊中心發現服務均已注冊: http://localhost:8001/

查看Spring Boot Admin 主頁發現可以看到服務信息: http://localhost:9301

添加登錄認證

我們可以通過給admin-server添加Spring Security支持來獲得登錄認證功能。

創建admin-security-server模塊

在pom.xml中添加相關依賴:

<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency><dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> <version>2.1.5</version></dependency><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId></dependency><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency>

在application.yml中進行配置,配置登錄用戶名和密碼,忽略admin-security-server的監控信息:

spring: application: name: admin-security-server security: # 配置登錄用戶名和密碼 user:  name: macro  password: 123456 boot: # 不顯示admin-security-server的監控信息 admin:  discovery:  ignored-services: ${spring.application.name}server: port: 9301eureka: client: register-with-eureka: true fetch-registry: true service-url:  defaultZone: http://localhost:8001/eureka/

對SpringSecurity進行配置,以便admin-client可以注冊:

/** * Created by macro on 2019/9/30. */@Configurationpublic class SecuritySecureConfig extends WebSecurityConfigurerAdapter { private final String adminContextPath; public SecuritySecureConfig(AdminServerProperties adminServerProperties) {  this.adminContextPath = adminServerProperties.getContextPath(); } @Override protected void configure(HttpSecurity http) throws Exception {  SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();  successHandler.setTargetUrlParameter("redirectTo");  successHandler.setDefaultTargetUrl(adminContextPath + "/");  http.authorizeRequests()    //1.配置所有靜態資源和登錄頁可以公開訪問    .antMatchers(adminContextPath + "/assets/**").permitAll()    .antMatchers(adminContextPath + "/login").permitAll()    .anyRequest().authenticated()    .and()    //2.配置登錄和登出路徑    .formLogin().loginPage(adminContextPath + "/login").successHandler(successHandler).and()    .logout().logoutUrl(adminContextPath + "/logout").and()    //3.開啟http basic支持,admin-client注冊時需要使用    .httpBasic().and()    .csrf()    //4.開啟基于cookie的csrf保護    .csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())    //5.忽略這些路徑的csrf保護以便admin-client注冊    .ignoringAntMatchers(      adminContextPath + "/instances",      adminContextPath + "/actuator/**"    ); }}

修改啟動類,開啟AdminServer及注冊發現功能:

@EnableDiscoveryClient@EnableAdminServer@SpringBootApplicationpublic class AdminSecurityServerApplication { public static void main(String[] args) {  SpringApplication.run(AdminSecurityServerApplication.class, args); }}

啟動eureka-server,admin-security-server,訪問Spring Boot Admin 主頁發現需要登錄才能訪問: http://localhost:9301

使用到的模塊

springcloud-learning├── eureka-server -- eureka注冊中心├── admin-server -- admin監控中心服務├── admin-client -- admin監控中心監控的應用服務└── admin-security-server -- 帶登錄認證的admin監控中心服務

看完了這篇文章,相信你對“SpringBootAdmin微服務應用監控怎么實現”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辽阳市| 安康市| 合川市| 府谷县| 耿马| 奇台县| 米林县| 安康市| 江安县| 黑龙江省| 石柱| 安达市| 星座| 广丰县| 大化| 吉林市| 仙桃市| 专栏| 罗城| 马关县| 若羌县| 卢龙县| 宿州市| 山东省| 晋中市| 赞皇县| 桓仁| 黎平县| 廉江市| 濮阳市| 阿鲁科尔沁旗| 肥乡县| 余庆县| 新乡县| 鄂托克旗| 繁峙县| 罗山县| 阿克苏市| 洪雅县| 逊克县| 黄梅县|