forked from apache/skywalking
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9820012
commit d1684a7
Showing
3 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
apm-collector/apm-collector-thirdparty-receiver/receiver-zipkin/docs/README-CN.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Zipkin接收器 | ||
[Zipkin](http://zipkin.io/)接收器提供了接受Zipkin格式的span数据功能.SkyWalking可以分析、聚合并且将数据展示到可视化界面.因此,用户不需要了解SkyWalking的自动采集探针(Java, .NET, node.js)是如何工作的,或者这些用户因为某些原因不想改变已有的采集方式,例如Zipkin的集成工作已经完成. | ||
|
||
Zipkin接受器在SkyWalking中仅仅只是一个可选特性,即使到目前为止它依然是[孵化特性] | ||
(../../../../docs/cn/Incubating/Abstract-CN.md). | ||
|
||
## 局限性 | ||
作为孵化功能,它仍是一个原型.所以它包含以下几点局限: | ||
|
||
1. 不要在同一分布式系统中使用SkyWalking原生探针和Zipkin的类库。考虑到Zipkin和SkyWalking的HEADER不是共享/可互操作的,它们的两个不会相互传播context.这会导致已跟踪的链接中断 | ||
1. 不支持集群模式. | ||
1. 在进行链路分析时,基于链路会在制定时间内结束。默认链路执行时间不超过2分钟。SkyWalking使用了更复杂的header和context结构,来避免zipkin分析时的这个问题. | ||
|
||
## 打开Zipkin接收器 | ||
Zipkin接收器是一个可选模块,默认是关闭.要打开它,在collector的application.yml配置文件中修改下面的配置项 | ||
```yaml | ||
receiver_zipkin: | ||
default: | ||
host: localhost | ||
port: 9411 | ||
contextPath: / | ||
expireTime: 20 # 单位为秒 | ||
maxCacheSize: 1000000 # traces buffer的大小 | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# 孵化特性 | ||
孵化的功能特性是由SkyWalking社区人员开发和贡献代码. | ||
目前代码还是原型,或者预览版本,并已经提交到主干代码,并进行发布。同时,功能开发者希望社区更多的开发者参与,对功能进行完善。 | ||
|
||
PMC和Committor团队会评估提交的特性,确保它是否具有移植性,是否兼容当前版本. | ||
|
||
下面是已知的,可能存在的孵化功能: | ||
1. collector提供了新的存储实现,例如:支持 ElasticSearch REST API(HTTP协议),MYSQL...... | ||
1. collector添加新的模块. | ||
1. agent添加新的监控插件. | ||
1. collector集成了一些新的功能和服务. |