您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關springboot中Actuator的指標監控可視化功能怎么用的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
springboot為我們提供了豐富的指標監控功能SpringBoot Actuator
SpringBoot Actuator是springboot為簡化我們對微服務項目的監控功能抽取出來的模塊,使得我們每個微服務快速引用即可獲得生產界別的應用監控、審計等功能。
后序文章會更新使用 我們先來看看怎么可視化
我們可以通過github上的開源項目
這里
我們創建一個springboot項目 作為可視化的服務端
使用新功能首先都是引入依賴
需要web項目
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> <version>2.4.3</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
開啟我們的監控服務 @EnableAdminServer
/** * @EnableAdminServer * 開啟監控功能 */ @EnableAdminServer @SpringBootApplication public class BootAdminserverApplication { public static void main(String[] args) { SpringApplication.run(BootAdminserverApplication.class, args); } }
避免端口沖突 更改端口號
server.port=8000
啟動測試一下
訪問一下
http://localhost:8000
顯示如下界面即啟動成功
這時需要在我們的其他微服務應用中添加客戶端依賴注冊進來
需要注冊進來的應用添加客戶端依賴
<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> <version>2.4.3</version> </dependency>
我們現在拿一個以前寫過的springboot項目 充當客戶端
我們在以前的項目中引入兩個依賴
第一個依賴開啟springboot的指標監控actuator需要的jar包
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> <version>2.4.3</version> </dependency>
我們在配置文件中增加配置信息
spring: boot: admin: client: # 可視化服務的地址 我們注冊到哪里的端口號 url: http://localhost:8000 application: #應用的名字 name: boot-web #management 是所有actuator的配置 #management.endpoint.端點名.xxx 對某個端點的具體配置 management: endpoints: enabled-by-default: true #默認開啟所有監控端點 web: exposure: include: '*' #以web方式暴露端點
我們啟動客戶端應用 回來查看監控服務器頁面
我們發現程序注冊進來了
我們可以點擊這個應用墻程序進來 看見詳細信息
感謝各位的閱讀!關于“springboot中Actuator的指標監控可視化功能怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。