【Java Spring Cloud 實戰之路】添加一個SpringBootAdmin監控

来源:https://www.cnblogs.com/c7jie/archive/2020/06/11/13091173.html
-Advertisement-
Play Games

0. 前言 在之前的幾章中,我們先搭建了一個項目骨架,又搭建了一個使用nacos的gateway網關項目,網關項目中並沒有配置太多的東西。現在我們就接著搭建在Spring Cloud 微服務中另一個重要的項目 - Spring boot admin. 1. Spring Boot Admin 介紹 ...


0. 前言

在之前的幾章中,我們先搭建了一個項目骨架,又搭建了一個使用nacos的gateway網關項目,網關項目中並沒有配置太多的東西。現在我們就接著搭建在Spring Cloud 微服務中另一個重要的項目 - Spring boot admin.

1. Spring Boot Admin 介紹

Spring Boot Admin 用來監控基於Spring Boot的應用,在Spring Boot Actuator的基礎上提供了簡潔的可視化Web UI。Spring Boot Admin 提供了以下功能:

  • 顯示應用的健康狀態
  • 顯示應用的細節內容: JVM和記憶體信息,micrometer信息, 數據源信息,緩存信息等
  • 顯示 編譯版本
  • 查看和下載日誌
  • 查看jvm參數和環境變數值
  • 查看Spring Boot項目配置
  • 顯示 thread dump
  • 顯示 http-traces

……

等一系列內容。

2. 創建一個 Spring Boot Admin項目

那麼,我們就來創建一個Spring Boot Admin 項目吧。

2.1 創建 Spring Boot Admin 服務端

在manager 目錄下,創建一個 monitor目錄,併在monitor目錄下創建一個pom.xml 文件,添加以下內容:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <artifactId>monitor</artifactId>
    <version>${revision}</version>
    <packaging>jar</packaging>
    <parent>
        <artifactId>manager</artifactId>
        <groupId>club.attachie</groupId>
        <version>${revision}</version>
    </parent>

</project>

在 manager/pom.xml 註冊我們新建的項目模塊:

<modules>
    <module>gateway</module>
    <module>monitor</module>
</modules>

在 monitor 創建如下目錄:

.
├── pom.xml
└── src
    └── main
        ├── java
        └── resources

在根目錄的pom.xml 添加 Spring Boot Admin 依賴:

先添加spring-boot-admin版本號變數:

<spring-boot-admin.version>2.2.3</spring-boot-admin.version>

併在dependencyManagement > dependencies 下添加:

<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>spring-boot-admin-starter-server</artifactId>
    <version>${spring-boot-admin.version}</version>
</dependency>

在monitor/pom.xml文件中添加:

<dependencies>
    <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>
</dependencies>

運行

mvn clean install

檢查並刷mvn引用緩存。

創建MonitorApplication類:

package club.attachie.nature.monitor;

import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

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

啟動後能看到如下界面:

3 與網關服務進行互通

在上一篇中,我們添加了Spring Cloud Gateway項目,到目前為止兩個項目之間完全割裂沒有關聯。在這一節,我們在兩者之間建立關聯。也就是說,將gateway 項目引入Spring Admin Boot監聽。

在 manager/gateway 的pom.xml 文件中加入如下引用:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

然後修改 gateway項目的啟動埠,在resources/bootstrap.yml 添加:

server:
  port: 8070

在 monitor中加入nacos引用:

<dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
</dependency>      
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

修改MonitorApplication 為:

package club.attachie.nature.monitor;

import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.context.config.annotation.RefreshScope;

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

創建monitor項目的bootsrap.yml:

spring:
  application:
    name: monitor
  
  cloud:
  	nacos:
      discovery:
        server-addr: 127.0.0.1:8848

關於這裡的配置 在上一篇 中有個錯誤,應該是 discovery > server-addr,不是 config > server-addr。兩者有區別,discovery表示設置nacos為服務發現中心,config表示nacos為配置中心。

啟動 gateway 項目和 monitor項目查看效果, 訪問 8080埠:

圖片

可以看到兩個應用可以被髮現,如果沒有設置monitor項目把nacos當做服務發現中心,將無法獲取到具體線上的應用。點擊 gateway 進去後可以查看到:

4. 總結

我們搭建了一個Spring Boot Admin 項目作為一個監控系統,後續會在這裡添加更多的內容。

更多內容煩請關註我的博客《高先生小屋》

file


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 摘要 開發已過幾載,閱代碼無數,有人寫的代碼邏輯清晰,bug難以隱藏;依賴最少,易於維護;錯誤處理完全根據一個明確的策略; 性能接近最佳化,避免代碼混亂和無原則的優化;後期閱讀真是賞心悅目,就像是看一篇文章。 但今天我想DIss的是一些CV大佬,那寫的代碼真是慘不忍睹。 來吧,展示 標誌位以及全局變 ...
  • Django中的信號及其用法 Django中提供了"信號調度",用於在框架執行操作時解耦. 一些動作發生的時候,系統會根據信號定義的函數執行相應的操作 Django中內置的signal Model_signals pre_init # Django中的model對象執行其構造方法前,自動觸發 pos ...
  • 一:背景 1. 講故事 好消息,.NET 5.0 終於在2020年6月10日發佈了第五個預覽版,眼尖的同學一定看到了在這個版本中終於支持了 C# 9.0,此處有掌聲,太好了!!! .Net5官方鏈接 可以看到目前的C#9還是預覽版,實現了一部分新語法供開發者提前嘗鮮,從github的roslyn倉庫 ...
  • 上一篇寫數據綁定的文章,寫到最後留了一個坑。當子組件綁定父組件的一個欄位,並且子組件修改它的時候父組件不能實時進行同步更新UI的問題,最近終於在Blazui作者的指導下搞定了。 UserInfo類要實現INotifyPropertyChanged介面 public class UserInfo: I ...
  • 新用WIN7旗艦版系統,開始還有aspnet state服務,安裝了vs2005後不見了 重新運行C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i(會出錯) 或C:\Windows\Microsoft.NET\Fra ...
  • 在微服務項目中使用的Identityserver4,給各個API添加認證時看到下麵兩種方式,寫法一是原始的寫法,寫法二是Identityserver4封裝的寫法,主要是在根據token獲取用戶信息時存在差異。 寫法一獲取用戶ID時的claim的type是 http://schemas.xmlsoap ...
  • 最近在學習Vue,用VSCode開發。經過摸索,VSCode最佳設置。 1 { 2 "eslint.enable": false, 3 "workbench.colorTheme": "One Dark Pro", 4 "vetur.format.options.tabSize": 2, 5 "ve ...
  • bool[] 隨機數判定 = new bool[10]; Random 隨機數 = new Random(); for (int i = 0; i< 10; i++) { int 輸出值 = 0; bool 重覆判定 = false; while (重覆判定 == false) { 輸出值 = 隨機 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...