您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Spring Cloud如何實現鏈路追蹤Sleuth的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
一、簡介
Add sleuth to the classpath of a Spring Boot application (see below for Maven and Gradle examples), and you will see the correlation data being collected in logs, as long as you are logging requests.
—— 摘自官網
Spring Cloud Sleuth 主要功能就是在分布式系統中提供追蹤解決方案,并且兼容支持了 zipkin,你只需要在pom文件中引入相應的依賴即可。
二、服務追蹤分析
微服務架構上通過業務來劃分服務的,通過REST調用,對外暴露的一個接口,可能需要很多個服務協同才能完成這個接口功能,如果鏈路上任何一個服務出現問題或者網絡超時,都會形成導致接口調用失敗。隨著業務的不斷擴張,服務之間互相調用會越來越復雜。
隨著服務的越來越多,對調用鏈的分析會越來越復雜。它們之間的調用關系也許如下:
三、術語
Span:基本工作單元,例如,在一個新建的span中發送一個RPC等同于發送一個回應請求給RPC,span通過一個64位ID唯一標識,trace以另一個64位ID表示,span還有其他數據信息,比如摘要、時間戳事件、關鍵值注釋(tags)、span的ID、以及進度ID(通常是IP地址) span在不斷的啟動和停止,同時記錄了時間信息,當你創建了一個span,你必須在未來的某個時刻停止它。
Trace:一系列spans組成的一個樹狀結構,例如,如果你正在跑一個分布式大數據工程,你可能需要創建一個trace。
Annotation:用來及時記錄一個事件的存在,一些核心annotations用來定義一個請求的開始和結束
cs - Client Sent -客戶端發起一個請求,這個annotion描述了這個span的開始
sr - Server Received -服務端獲得請求并準備開始處理它,如果將其sr減去cs時間戳便可得到網絡延遲
ss - Server Sent -注解表明請求處理的完成(當請求返回客戶端),如果ss減去sr時間戳便可得到服務端需要的處理請求時間
cr - Client Received -表明span的結束,客戶端成功接收到服務端的回復,如果cr減去cs時間戳便可得到客戶端從服務端獲取回復的所有所需時間 將Span和Trace在一個系統中使用Zipkin注解的過程圖形化:
將Span和Trace在一個系統中使用Zipkin注解的過程圖形化:
四、構建工程
基本知識講解完畢,下面我們來實戰,本文的案例主要有三個工程組成:一個server-zipkin,它的主要作用使用ZipkinServer 的功能,收集調用數據,并展示;一個service-hi,對外暴露hi接口;一個service-miya,對外暴露miya接口;這兩個service可以相互調用;并且只有調用了,server-zipkin才會收集數據的,這就是為什么叫服務追蹤了。
4.1 構建server-zipkin
建一個spring-boot工程取名為server-zipkin,在其pom引入依賴:
<dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-server</artifactId> </dependency> <dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-autoconfigure-ui</artifactId> </dependency>
在其程序入口類, 加上注解@EnableZipkinServer,開啟ZipkinServer的功能:
@SpringBootApplication @EnableZipkinServer public class ServerZipkinApplication { public static void main(String[] args) { SpringApplication.run(ServerZipkinApplication.class, args); } }
在配置文件application.yml指定服務端口為:
server.port=9411
在其pom引入起步依賴spring-cloud-starter-zipkin,代碼如下:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-zipkin</artifactId> </dependency>
在其配置文件application.yml指定zipkin server的地址,頭通過配置“spring.zipkin.base-url”指定:
server.port=8988 spring.zipkin.base-url=http://localhost:9411 spring.application.name=service-hi
通過引入spring-cloud-starter-zipkin依賴和設置spring.zipkin.base-url就可以了。
對外暴露接口:
@RequestMapping("/hi") public String callHome(){ LOG.log(Level.INFO, "calling trace service-hi "); return restTemplate.getForObject("http://localhost:8989/miya", String.class); } @RequestMapping("/info") public String info(){ LOG.log(Level.INFO, "calling trace service-hi "); return "i'm service-hi"; }
創建過程痛service-hi,引入相同的依賴,配置下spring.zipkin.base-url。
對外暴露接口:
@RequestMapping("/hi") public String home(){ LOG.log(Level.INFO, "hi is being called"); return "hi i'm miya!"; } @RequestMapping("/miya") public String info(){ LOG.log(Level.INFO, "info is being called"); return restTemplate.getForObject("http://localhost:8988/info",String.class); }
依次啟動上面的三個工程,打開瀏覽器訪問:http://localhost:9411/,會出現以下界面:
訪問:http://localhost:8989/miya,瀏覽器出現:
i’m service-hi
再打開http://localhost:9411/的界面,點擊Dependencies,可以發現服務的依賴關系:
點擊find traces,可以看到具體服務相互調用的數據:
感謝各位的閱讀!關于“Spring Cloud如何實現鏈路追蹤Sleuth”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。