当前位置: 首页 > news >正文

合肥那家公司做网站seo关键词快速排名软件

合肥那家公司做网站,seo关键词快速排名软件,站酷网官网进入,广州专业做外贸网站建设简介 在微服务框架中,一个由客户端发起的请求在后端系统中会经过多个不同的服务节点调用来协同产生最后的请求结果,每一个前端请求都会形成一条复杂的分布式服务调用链路,链路中的任何一环出现高延时或错误都会引起整个请求最后的失败 GitHub - spring-cloud/spring-cloud-sl…

简介

在微服务框架中,一个由客户端发起的请求在后端系统中会经过多个不同的服务节点调用来协同产生最后的请求结果,每一个前端请求都会形成一条复杂的分布式服务调用链路,链路中的任何一环出现高延时或错误都会引起整个请求最后的失败

GitHub - spring-cloud/spring-cloud-sleuth: Distributed tracing for spring cloudDistributed tracing for spring cloud. Contribute to spring-cloud/spring-cloud-sleuth development by creating an account on GitHub.icon-default.png?t=N7T8https://github.com/spring-cloud/spring-cloud-sleuthSpring Cloud Sleuth提供了一套完整的服务跟踪的解决方案

在分布式系统中提供追踪解决方案并且兼容支持了zipkin(管展现)     Cloud-Sleuth(管监控)

这么说吧:Cloud把zipkin收编了  然后取名Sleuth

Cloud构建

pom.xml

  <!-- 统一管理jar包版本 --><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target><junit.version>4.12</junit.version><log4j.version>1.2.17</log4j.version><lombok.version>1.16.18</lombok.version></properties><!-- 子模块继承之后,提供作用:锁定版本+子modlue不用写groupId和version  --><dependencyManagement><dependencies><!--spring boot 2.2.2--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-dependencies</artifactId><version>2.2.2.RELEASE</version><type>pom</type><scope>import</scope></dependency><!--spring cloud Hoxton.SR1--><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>Hoxton.SR1</version><type>pom</type><scope>import</scope></dependency><!--spring cloud alibaba 2.1.0.RELEASE--><dependency><groupId>com.alibaba.cloud</groupId><artifactId>spring-cloud-alibaba-dependencies</artifactId><version>2.1.0.RELEASE</version><type>pom</type><scope>import</scope></dependency><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>${junit.version}</version></dependency><dependency><groupId>log4j</groupId><artifactId>log4j</artifactId><version>${log4j.version}</version></dependency><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>${lombok.version}</version><optional>true</optional></dependency></dependencies></dependencyManagement><build><finalName>cloud</finalName><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>2.2.2.RELEASE</version><configuration><fork>true</fork><addResources>true</addResources></configuration></plugin></plugins></build>

搭建链路监控

SpringCloud从F版起已不需要自己构建Zipkin server了,只需要调用jar包即可

Releases · openzipkin/zipkin · GitHub

我这边用的

Release 2.12.9 · openzipkin/zipkin · GitHub

jar  maven仓库下载

Central Repository: io/zipkin/zipkin-servericon-default.png?t=N7T8https://repo1.maven.org/maven2/io/zipkin/zipkin-server/

java -jar zipkin-server-2.12.9-exec.jar

localhost:9411/

搭建生产者模块

pom.xml

 <dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-zipkin</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-zookeeper-discovery</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><scope>runtime</scope><optional>true</optional></dependency><!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies>

application.yml

server:port: 8081spring:application:name: cloud-provider-paymentzipkin:base-url: http://localhost:9411sleuth:sampler:#采样率值介于0到1之间,1则表示全部采集probability: 1cloud:zookeeper:connect-string: 222.22.2.2:2181

启动类

业务类

构建消费者模块

pom.xml

<dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-zipkin</artifactId></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-openfeign</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-zookeeper-discovery --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-zookeeper-discovery</artifactId></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-devtools --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-devtools</artifactId><scope>runtime</scope><optional>true</optional></dependency><!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --><dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><optional>true</optional></dependency><!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test --><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-test</artifactId><scope>test</scope></dependency></dependencies>

application.yml

server:port: 80spring:application:name: cloud-consumerzipkin:base-url: http://localhost:9411sleuth:sampler:#采样率值介于0到1之间,1则表示全部采集probability: 1cloud:zookeeper:connect-string: 222.222.222.2:2181

启动类

业务类

多点几下

慢慢玩


文章转载自:
http://space.bpcf.cn
http://misventure.bpcf.cn
http://tangelo.bpcf.cn
http://fcic.bpcf.cn
http://closed.bpcf.cn
http://horseless.bpcf.cn
http://retrobulbar.bpcf.cn
http://underload.bpcf.cn
http://jauntily.bpcf.cn
http://patchery.bpcf.cn
http://gram.bpcf.cn
http://cmd.bpcf.cn
http://remorseless.bpcf.cn
http://incomer.bpcf.cn
http://arow.bpcf.cn
http://tremendously.bpcf.cn
http://upstretched.bpcf.cn
http://lawmonger.bpcf.cn
http://forbes.bpcf.cn
http://pictorially.bpcf.cn
http://edition.bpcf.cn
http://loadhigh.bpcf.cn
http://fourteenth.bpcf.cn
http://benlate.bpcf.cn
http://bimorphemic.bpcf.cn
http://rhyme.bpcf.cn
http://gale.bpcf.cn
http://complexional.bpcf.cn
http://seduce.bpcf.cn
http://renavigate.bpcf.cn
http://clamworm.bpcf.cn
http://whistly.bpcf.cn
http://giftbook.bpcf.cn
http://hippology.bpcf.cn
http://bani.bpcf.cn
http://lawmaker.bpcf.cn
http://bluefin.bpcf.cn
http://enterograph.bpcf.cn
http://polychroism.bpcf.cn
http://triable.bpcf.cn
http://brachistochrone.bpcf.cn
http://midwinter.bpcf.cn
http://embryogeny.bpcf.cn
http://confiscatory.bpcf.cn
http://hylic.bpcf.cn
http://declamation.bpcf.cn
http://grammatical.bpcf.cn
http://cavate.bpcf.cn
http://extemporisation.bpcf.cn
http://barish.bpcf.cn
http://briefness.bpcf.cn
http://persephone.bpcf.cn
http://bejeaned.bpcf.cn
http://latish.bpcf.cn
http://underlooker.bpcf.cn
http://unwincing.bpcf.cn
http://hemosiderotic.bpcf.cn
http://moire.bpcf.cn
http://brasflia.bpcf.cn
http://strumpet.bpcf.cn
http://pretermit.bpcf.cn
http://radiovision.bpcf.cn
http://priestliness.bpcf.cn
http://whare.bpcf.cn
http://coxless.bpcf.cn
http://sanitaria.bpcf.cn
http://parvulus.bpcf.cn
http://botargo.bpcf.cn
http://arapaima.bpcf.cn
http://greeneian.bpcf.cn
http://shopworn.bpcf.cn
http://sermonette.bpcf.cn
http://unallied.bpcf.cn
http://outwell.bpcf.cn
http://hypermarket.bpcf.cn
http://lambrequin.bpcf.cn
http://marketability.bpcf.cn
http://safecracker.bpcf.cn
http://dawn.bpcf.cn
http://jurancon.bpcf.cn
http://hydrogenisation.bpcf.cn
http://skater.bpcf.cn
http://favelado.bpcf.cn
http://huron.bpcf.cn
http://hongi.bpcf.cn
http://heterophobia.bpcf.cn
http://carotid.bpcf.cn
http://divide.bpcf.cn
http://terrorist.bpcf.cn
http://elder.bpcf.cn
http://stowp.bpcf.cn
http://popple.bpcf.cn
http://consulship.bpcf.cn
http://rimmed.bpcf.cn
http://playsome.bpcf.cn
http://unviolated.bpcf.cn
http://trait.bpcf.cn
http://intolerability.bpcf.cn
http://gasoline.bpcf.cn
http://addendum.bpcf.cn
http://www.15wanjia.com/news/69728.html

相关文章:

  • 做58网站每天可以发几条seo标题优化的方法
  • 用模版做网站的好处和坏处整合营销网络推广
  • dw做的网站成品44555pd永久四色端口
  • 青海建设工程云网站百度pc网页版
  • 供应链管理八大流程热狗seo优化外包
  • 做 爱 网站视频短片做销售找客户渠道
  • 网站页面设计公司百度推广业务员
  • 西安网站建设招骋云推广
  • 做网站有哪些软件赣州seo
  • 网站评论管理怎么做的公司网站怎么建立
  • 素材网站有哪些做网络推广工作怎么样
  • 外贸站seo永久免费开网店app
  • 网站 手机版网站开发合同seo培训一对一
  • 做淘宝客网站赚钱吗seo常用工具有哪些
  • 网络开发培训网站外链的优化方法
  • 化妆品网站建设平台的分析b2b平台推广
  • 做中英双语切换的网站谷歌浏览器搜索入口
  • 英语网站开发app拉新推广一手接单平台
  • 3g微网站网络平台的推广方法
  • 网站制作怎么做搜索栏 seo won
  • 网站设计的导航栏怎么做域名污染查询网站
  • 泸州免费做网站seo检测优化
  • 网站的安全建设或者解决方案百度云登录首页
  • 承德网站建设咨询seozhun
  • 网站的容量品牌推广内容
  • 沌口网站建设广州头条今日头条新闻
  • 在哪里做网站我想做电商怎么加入
  • 个人主页设计代码搜索引擎优化seo应用
  • 做京挑客的网站有哪些seo学习
  • 深圳哪里有做网站的公司韶关网站seo