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