這篇文章給大家分享的是有關(guān)springcloud整合zipkin-server內(nèi)存日志監(jiān)控的示例分析的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
專注于為中小企業(yè)提供成都網(wǎng)站建設(shè)、做網(wǎng)站服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)長(zhǎng)安免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了近1000家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過(guò)網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。
Zipkin
Zipkin是一款開源的分布式實(shí)時(shí)數(shù)據(jù)追蹤系統(tǒng)(Distributed Tracking System),基于 Google Dapper的論文設(shè)計(jì)而來(lái),由 Twitter 公司開發(fā)貢獻(xiàn)。其主要功能是聚集來(lái)自各個(gè)異構(gòu)系統(tǒng)的實(shí)時(shí)監(jiān)控?cái)?shù)據(jù)。
Zipkin主要包括四個(gè)模塊
- Collector 接收或收集各應(yīng)用傳輸?shù)臄?shù)據(jù)
- Storage 存儲(chǔ)接受或收集過(guò)來(lái)的數(shù)據(jù),當(dāng)前支持Memory,MySQL,Cassandra,ElasticSearch等,默認(rèn)存儲(chǔ)在內(nèi)存中。
- API(Query) 負(fù)責(zé)查詢Storage中存儲(chǔ)的數(shù)據(jù),提供簡(jiǎn)單的JSON API獲取數(shù)據(jù),主要提供給web UI使用
- Web 提供簡(jiǎn)單的web界面
下面通過(guò)代碼給大家介紹springcloud 整合 zipkin-server 內(nèi)存日志監(jiān)控問(wèn)題,具體內(nèi)容如下所示:
1. pom.xml 加入
<!--zipkin--> <dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-server</artifactId> <version>2.12.3</version> <exclusions> <exclusion> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-autoconfigure-ui</artifactId> <version>2.12.3</version> </dependency> <dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-autoconfigure-collector-kafka</artifactId> <version>2.12.9</version> </dependency> <dependency> <groupId>io.zipkin.java</groupId> <artifactId>zipkin-autoconfigure-storage-elasticsearch-http</artifactId> <version>2.8.4</version> </dependency> <!--www.1b23.com-->
2. application.properties 配置文件
spring.application.name=fhcloud-zipkin-server server.port=8003 #開啟安全認(rèn)證 用戶名和密碼 spring.security.basic.enabled=true spring.security.user.name=admin spring.security.user.password=root #指向注冊(cè)中心 eureka.instance.leaseRenewalIntervalInSeconds=10 eureka.client.registryFetchIntervalSeconds=5 eureka.client.serviceUrl.defaultZone=http://127.0.0.1:8761/eureka/,http://127.0.0.1:8762/eureka/ #actuator配置 management.endpoints.web.exposure.include=* management.endpoints.web.exposure.exclude=env,beans management.security.enabled=false management.metrics.web.server.auto-time-requests=fals
3. 啟動(dòng)類 FHmainApplication.java
package org.fh; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; import zipkin2.server.internal.EnableZipkinServer; /** * 說(shuō)明:?jiǎn)?dòng)類 * www.1b23.com */ @SpringBootApplication @EnableEurekaClient @EnableZipkinServer public class FHmainApplication { public static void main(String[] args) { SpringApplication.run(FHmainApplication.class, args); } }
感謝各位的閱讀!關(guān)于“springcloud整合zipkin-server內(nèi)存日志監(jiān)控的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
網(wǎng)頁(yè)名稱:springcloud整合zipkin-server內(nèi)存日志監(jiān)控的示例分析
本文路徑:http://jinyejixie.com/article14/pgioge.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營(yíng)銷、用戶體驗(yàn)、做網(wǎng)站、網(wǎng)站策劃、App設(shè)計(jì)、全網(wǎng)營(yíng)銷推廣
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)