一、zipkin作用

  • 全链路追踪工具(查看依赖关系
  • 查看每个接口、每个service的执行速度(定位问题发生点或者寻找性能瓶颈

二、zipkin工作原理

  • 创造一些追踪标识符(tracingId,spanId,parentId),最终将一个request的流程树构建出来

三、zipkin架构

1、Transport

  • transport作用:收集被trace的services的spans,并将它们转化为zipkin common Span,之后把这些Spans传递的存储层。
  • 三种主要的transport:
    • HTTP(默认)

      • 通过http headers来传递追踪信息
      • header中的key
        • X-B3-TraceId: 64 encoded bits(id被encode为hex Strings)
        • X-B3-SpanId: 64 encoded bits
        • X-B3-ParentSpanId: 64 encoded bits
        • X-B3-Sampled: Boolean (either “1” or “0”)(下面的调用是否进行采样)
        • X-B3-Flags: a Long
    • Scribe
    • Kafka

2、基础架构(4个组件)

  • collector

    • 作用:zipkin collector会对一个到来的被trace的数据(span)进行验证、存储并设置索引。
  • storage
  • search
  • webUI

四、zipkin核心数据结构

  • Annotation(用途:用于定位一个request的开始和结束,cs/sr/ss/cr含有额外的信息,比如说时间点)

    • cs:Client Start - This sets the beginning of the span

      • 一个span的开始
    • sr:Server Receive - The server has received the request and will start processing it
    • ss:Server Send - The server has completed processing and has sent the request back to the client
    • cr:Client Receive - The client has received the response from the server. This sets the end of the span. The RPC is considered complete when this annotation is recorded
      • 一个span的结束
      • 当这个annotation被记录了,这个RPC也被认为完成了
  • BinaryAnnotation(用途:They are meant to provide extra information about the RPC)
  • Span:就是一个请求(包含一组Annotation和BinaryAnnotation)
    • Spans contain identifying information such as traceId, spandId, parentId, and RPC name
  • Trace
    • Traces are built by collecting all Spans that share a traceId
    • 通过traceId、spanId和parentId,被收集到的span会汇聚成一个tree,从而提供出一个request的整体流程。(这也是zipkin的工作原理)

注意:时间点计算

  • sr-cs:网络延迟
  • ss-sr:逻辑处理时间
  • cr-cs:整个流程时间

五、Trace identifiers

  • 含义:通过下边3个Id,对数据进行重组
  • 三个Id(64位 long型数据)
    • TraceId

      • The overall ID of the trace.
      • Every span in a trace will share this ID.
    • SpanId
      • The ID for a particular span.
      • This may or may not be the same as the trace id.
    • ParentId
      • This is an optional ID that will only be present on child spans.
      • That is the span without a parent id is considered the root of the trace.

六:zipkin工作流程图

说明:

  • X和A可以相等

疑问

  • spanId==C的span为什要有,是否可以省掉?

父子span关系:

说明:parentId==null,表示该span就是root span。

七、注意点

1、使用zipkin,必须使用java8

2、在生产环境,不会对每个请求都进行采样追踪(降低trace对整个服务的性能损耗)

参考:

http://zipkin.io/

https://github.com/openzipkin/zipkin/tree/master/zipkin-server server配置

【附8】zipkin的更多相关文章

  1. 附8 zipkin

    一.zipkin作用 全链路追踪工具(查看依赖关系) 查看每个接口.每个service的执行速度(定位问题发生点或者寻找性能瓶颈) 二.zipkin工作原理 创造一些追踪标识符(tracingId,s ...

  2. 第二十七章 springboot + zipkin(brave-okhttp实现)

    本文截取自:http://blog.csdn.net/liaokailin/article/details/52077620 一.前提 1.zipkin基本知识:附8 zipkin 2.启动zipki ...

  3. 【第二十七章】 springboot + zipkin(brave-okhttp实现)

    本文截取自:http://blog.csdn.net/liaokailin/article/details/52077620 一.前提 1.zipkin基本知识:附8 zipkin 2.启动zipki ...

  4. springboot + zipkin(brave-okhttp实现)

    一.前提 1.zipkin基本知识:附8 zipkin 2.启动zipkin server: 2.1.在官网下载服务jar,http://zipkin.io/pages/quickstart.html ...

  5. springcloud微服务实战:Eureka+Zuul+Feign/Ribbon+Hystrix Turbine+SpringConfig+sleuth+zipkin

    相信现在已经有很多小伙伴已经或者准备使用springcloud微服务了,接下来为大家搭建一个微服务框架,后期可以自己进行扩展.会提供一个小案例: 服务提供者和服务消费者 ,消费者会调用提供者的服务,新 ...

  6. spring cloud 系列第7篇 —— sleuth+zipkin 服务链路追踪 (F版本)

    源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.简介 在微服务架构中,几乎每一个前端的请求都会经过多个服务单元协调来提 ...

  7. C# 多种方式发送邮件(附帮助类)

    因项目业务需要,需要做一个发送邮件功能,查了下资料,整了整,汇总如下,亲测可用- QQ邮箱发送邮件 #region 发送邮箱 try { MailMessage mail = new MailMess ...

  8. 【开源毕设】一款精美的家校互动APP分享——爱吖校推 [你关注的,我们才推](持续开源更新3)附高效动态压缩Bitmap

    一.写在前面 爱吖校推如同它的名字一样,是一款校园类信息推送交流平台,这么多的家校互动类软件,你选择了我,这是我的幸运.从第一次在博客园上写博客到现在,我一次一次地提高博文的质量和代码的可读性,都是为 ...

  9. 轻量级通信引擎StriveEngine —— C/S通信demo(附源码)

    前段时间,有几个研究ESFramework的朋友对我说,ESFramework有点庞大,对于他们目前的项目来说有点“杀鸡用牛刀”的意思,因为他们的项目不需要文件传送.不需要P2P.不存在好友关系.也不 ...

随机推荐

  1. mysql transaction 事务

    1.事务简介 一个"最小的"不可再分的"工作单元". 一个事务通常对应了一个完整的业务.如:银行的转账功能,a转账给b,a扣钱,b加钱. 一个事务包含一条或多条 ...

  2. CentOS工作内容(五)单一网卡配置多个IP

    CentOS工作内容(五)单一网卡配置多个IP 用到的快捷键 tab 自动补齐(有不知道的吗) ctrl+a 移动到当前行的开头(a ahead) ctrl+e 移动到当前行的开头(e end) ct ...

  3. selenium webdriver处理HTML5 的视频播放

    import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.sele ...

  4. 7.11 Models -- Customizing Adapters

    一.概述 1. 在Ember Data中,和后台数据存储通信的逻辑存在于Adapter中.Ember Data的有一些内置的假设,一个 REST API 应该怎么看.如果你的后台约定和这些假设不同,E ...

  5. random随机数应用

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  6. MySQL实现SQL Server排名函数

    最近在MySQL中遇到分组排序查询时,突然发现MySQL中没有row_number() over(partition by colname)这样的分组排序.并且由于MySQL中没有类似于SQL Ser ...

  7. sql server数字转字符串出现科学计数法

    在从excel往sql server导入数据,电话.编号等数字呈现float类型,然后向b表中insert后(phone为nvarchar)出现科学计数法,解决方法:需将float等数据类型转为标准的 ...

  8. 好消息啊,有些c似乎不用加厂商前缀了

    今天写程序,一个不小心,没写厂商前缀,然而,,,,,,, 可以运行了(我居然不知道这个消息!!!!) 赶紧写几个字纪念一下. (把鼠标移动到红色的字上边~~~) don' you think that ...

  9. Description Resource Path LocationType Java compiler level does not match the version of the instal

    从别的地方导入进来的maven项目报: Description Resource Path Location TypeJava compiler level does not match the ve ...

  10. 拉取远程仓库到本地错误The authenticity of host 'github.com (13.229.188.59)' can't be established.

    1.个人在github上面创建了仓库,通过本地的git拉取远程仓库到本地报错信息如下: 这是因为Git使用SSH连接,而SSH第一次连接需要验证GitHub服务器的Key.确认GitHub的Key的指 ...