亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springcloud整合zipkin-server內存日志監控的示例分析

發布時間:2021-09-02 10:09:25 來源:億速云 閱讀:239 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關springcloud整合zipkin-server內存日志監控的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

Zipkin

Zipkin是一款開源的分布式實時數據追蹤系統(Distributed Tracking System),基于 Google Dapper的論文設計而來,由 Twitter 公司開發貢獻。其主要功能是聚集來自各個異構系統的實時監控數據。

Zipkin主要包括四個模塊 

- Collector           接收或收集各應用傳輸的數據 
- Storage            存儲接受或收集過來的數據,當前支持Memory,MySQL,Cassandra,ElasticSearch等,默認存儲在內存中。 
- API(Query)   負責查詢Storage中存儲的數據,提供簡單的JSON API獲取數據,主要提供給web UI使用 
- Web                  提供簡單的web界面

下面通過代碼給大家介紹springcloud 整合 zipkin-server 內存日志監控問題,具體內容如下所示:

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
#開啟安全認證 用戶名和密碼
spring.security.basic.enabled=true
spring.security.user.name=admin
spring.security.user.password=root
#指向注冊中心
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. 啟動類 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;
/**
 * 說明:啟動類 
 * www.1b23.com
 */
@SpringBootApplication
@EnableEurekaClient
@EnableZipkinServer
public class FHmainApplication {
 public static void main(String[] args) {
 SpringApplication.run(FHmainApplication.class, args);
 }
 
}

感謝各位的閱讀!關于“springcloud整合zipkin-server內存日志監控的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

北流市| 中方县| 泰州市| 罗江县| 山阳县| 五莲县| 河间市| 西吉县| 卫辉市| 司法| 阳春市| 马公市| 高青县| 稻城县| 武川县| 河津市| 镇江市| 穆棱市| 濉溪县| 万载县| 丹江口市| 大新县| 年辖:市辖区| 宾川县| 利津县| 涡阳县| 东丰县| 泊头市| 裕民县| 新龙县| 象州县| 巴彦淖尔市| 安西县| 昭平县| 鲜城| 遵义县| 鄂伦春自治旗| 桐乡市| 临潭县| 漠河县| 万盛区|