You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
5 years ago
|
# 背景
|
||
|
|
||
|
当代的互联网的服务,通常都是用复杂的、大规模分布式集群来实现的。互联网应用构建在不同的软件模块集上,这些软件模块,有可能是由不同的团队开发、可能使用不同的编程语言来实现、有可能布在了几千台服务器,横跨多个不同的数据中心。因此,就需要一些可以帮助理解系统行为、用于分析性能问题的工具。
|
||
|
|
||
|
# 概览
|
||
|
|
||
|
* kratos内部的trace基于opentracing语义
|
||
|
* 使用protobuf协议描述trace结构
|
||
|
* 全链路支持(gRPC/HTTP/MySQL/Redis/Memcached等)
|
||
|
|
||
|
## 参考文档
|
||
|
|
||
|
[opentracing](https://github.com/opentracing-contrib/opentracing-specification-zh/blob/master/specification.md)
|
||
|
[dapper](https://bigbully.github.io/Dapper-translation/)
|
||
|
|
||
|
# 使用
|
||
|
|
||
|
kratos本身不提供整套`trace`数据方案,但在`net/trace/report.go`内声明了`repoter`接口,可以简单的集成现有开源系统,比如:`zipkin`和`jaeger`。
|
||
|
|
||
|
### zipkin使用
|
||
|
|
||
5 years ago
|
可以看[zipkin](https://github.com/go-kratos/kratos/tree/master/pkg/net/trace/zipkin)的协议上报实现,具体使用方式如下:
|
||
5 years ago
|
|
||
|
1. 前提是需要有一套自己搭建的`zipkin`集群
|
||
|
2. 在业务代码的`main`函数内进行初始化,代码如下:
|
||
|
|
||
|
```go
|
||
|
// 忽略其他代码
|
||
5 years ago
|
import "github.com/go-kratos/kratos/pkg/net/trace/zipkin"
|
||
5 years ago
|
// 忽略其他代码
|
||
|
func main(){
|
||
|
// 忽略其他代码
|
||
|
zipkin.Init(&zipkin.Config{
|
||
|
Endpoint: "http://localhost:9411/api/v2/spans",
|
||
|
})
|
||
|
// 忽略其他代码
|
||
|
}
|
||
|
```
|
||
|
|
||
5 years ago
|
### zipkin效果图
|
||
5 years ago
|
|
||
4 years ago
|
![zipkin](img/zipkin.jpg)
|