hyperf/doc/zh-cn/tracer.md

248 lines
9.1 KiB
Markdown
Raw Normal View History

2019-06-03 02:14:37 +08:00
# 调用链追踪
2019-05-16 20:18:43 +08:00
2019-06-04 11:12:51 +08:00
在微服务场景下,我们会拆分出来很多的服务,也就意味着一个业务请求,少则跨越 3-4 个服务,多则几十个甚至更多,在这种架构下我们需要对某一个问题进行 Debug 的时候是极其困难的一件事情,那么我们就需要一个调用链追踪系统来帮助我们动态地展示服务调用的链路,以便我们可以快速地对问题点进行定位,亦可根据链路信息对服务进行调优。
`Hyperf` 里我们提供了 [hyperf/tracer](https://github.com/hyperf/tracer) 组件来对各个跨网络请求来进行调用的追踪以及分析,目前根据 [OpenTracing](https://opentracing.io) 协议对接了 [Zipkin](https://zipkin.io/) 系统和 [Jaeger](https://www.jaegertracing.io/) 系统,用户也可以根据 OpenTracing 协议定制实现。
2019-06-03 02:14:37 +08:00
## 安装
2019-06-03 02:14:37 +08:00
### 通过 Composer 安装组件
2019-06-03 02:14:37 +08:00
```bash
composer require hyperf/tracer
```
[hyperf/tracer](https://github.com/hyperf/tracer) 组件默认安装了 [Zipkin](https://zipkin.io/) 相关依赖。如果要使用 [Jaeger](https://www.jaegertracing.io/),还需要执行下面的命令安装对应的依赖:
```bash
composer require jonahgeorge/jaeger-client-php
```
### 增加组件配置
2019-06-03 02:14:37 +08:00
如文件不存在,可执行下面的命令增加 `config/autoload/opentracing.php` 配置文件:
```bash
2019-09-20 00:35:57 +08:00
php bin/hyperf.php vendor:publish hyperf/tracer
2019-06-03 02:14:37 +08:00
```
2020-01-16 10:25:12 +08:00
### opentracking/opentracking 版本申明
由于 [官方包](https://github.com/opentracing/opentracing-php) 最新版还是 `1.0.0-beta6`, 会导致 composer 安装时不符合 `minimum-stability`, 所以 hyperf 框架 fork 了一份, 并基于当前 master 分支打上 `v1.0.0` 版本
```json
{
"require": {
...
"opentracing/opentracing":"1.0.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/hyperf/opentracing-php.git"
}
]
}
```
## 使用
2019-06-03 02:14:37 +08:00
### 配置
2019-06-03 02:14:37 +08:00
2019-09-20 00:35:57 +08:00
#### 配置追踪开关
2019-06-04 11:12:51 +08:00
默认提供了对 `Guzzle HTTP` 调用、`Redis` 调用、`DB` 调用进行了监听或 `AOP` 切面处理,以实现对调用链的传播与追踪,默认情况下这些追踪不会打开,您需要通过更改 `config/autoload/opentracing.php` 配置文件内的 `enable` 项内的开关来打开对某些远程调用的追踪。
2019-06-03 02:14:37 +08:00
```php
<?php
return [
'enable' => [
// 打开或关闭对 Guzzle HTTP 调用的追踪
'guzzle' => false,
// 打开或关闭对 Redis 调用的追踪
'redis' => false,
// 打开或关闭对 DB 调用的追踪
'db' => false,
],
];
```
2019-09-20 01:01:30 +08:00
在开始追踪之前,我们还需要选择所使用的 Tracer 驱动,并对 Tracer 进行配置。
2019-09-20 00:35:57 +08:00
#### 选择追踪器驱动
2019-09-20 00:35:57 +08:00
配置文件内的 `default` 对应的值则为使用的驱动名称。驱动的具体配置在 `tracer` 项下定义,使用与 `key` 相同的驱动。
```php
<?php
return [
2019-09-20 00:35:57 +08:00
// 选择默认的 Tracer 驱动,所选 Tracer 名称对应 tracers 下定义的键
'default' => env('TRACER_DRIVER', 'staging_zipkin'),
// 这里暂时省略其他配置
'enable' => [],
'tracer' => [
2019-09-20 00:35:57 +08:00
// Zipkin 配置
'staging_zipkin' => [
2019-11-07 18:44:36 +08:00
'driver' => \Hyperf\Tracer\Adapter\ZipkinTracerFactory::class,
],
2019-09-20 00:35:57 +08:00
// 另一套 Zipkin 配置
'producton_zipkin' => [
2019-11-07 18:44:36 +08:00
'driver' => \Hyperf\Tracer\Adapter\ZipkinTracerFactory::class,
],
2019-09-20 00:35:57 +08:00
// Jaeger 配置
'jaeger' => [
2019-11-07 18:44:36 +08:00
'driver' => \Hyperf\Tracer\Adapter\JaegerTracerFactory::class,
],
]
2019-09-20 00:35:57 +08:00
];
```
2019-09-20 00:35:57 +08:00
注意,如示例配置所示,您可以配置多套 Zipkin 驱动或 Jaeger 驱动。虽然采用的底层系统一样,但他们的具体配置可以不同。一种常见场景是我们希望测试环境 100% 采样,但在生产环境下 1% 采样,就可以配置两套驱动,然后根据 `default` 项下的环境变量来选择不同的驱动。
2019-09-20 00:35:57 +08:00
#### 配置 Zipkin
2019-09-20 00:35:57 +08:00
使用 Zipkin 时,在配置文件中的 `tracer` 项增加 Zipkin 的具体配置。
2019-06-03 02:14:37 +08:00
```php
<?php
use Zipkin\Samplers\BinarySampler;
return [
2019-09-20 00:35:57 +08:00
// 选择默认的 Tracer
'default' => env('TRACER_DRIVER', 'zipkin'),
2019-06-03 02:14:37 +08:00
// 这里的代码演示不对 enable 内的配置进行展开
'enable' => [],
2019-09-20 00:35:57 +08:00
'tracer' => [
2019-09-20 00:35:57 +08:00
// Zipkin 驱动配置
'zipkin' => [
// 当前应用的配置
'app' => [
'name' => env('APP_NAME', 'skeleton'),
// 如果 ipv6 和 ipv6 为空组件会自动从 Server 中检测
'ipv4' => '127.0.0.1',
'ipv6' => null,
'port' => 9501,
],
2019-11-07 18:44:36 +08:00
'driver' => \Hyperf\Tracer\Adapter\ZipkinTracerFactory::class,
'options' => [
2019-09-20 00:35:57 +08:00
// Zipkin 服务的 endpoint 地址
'endpoint_url' => env('ZIPKIN_ENDPOINT_URL', 'http://localhost:9411/api/v2/spans'),
// 请求超时秒数
'timeout' => env('ZIPKIN_TIMEOUT', 1),
],
// 采样器,默认为所有请求的都追踪
'sampler' => BinarySampler::createAsAlwaysSample(),
2019-06-03 02:14:37 +08:00
],
],
2019-09-20 00:35:57 +08:00
];
```
2019-09-20 00:35:57 +08:00
#### 配置 Jaeger
2019-09-20 00:35:57 +08:00
使用 Jaeger 时,在配置文件中的 `tracer` 项增加 Jaeger 的具体配置。
```php
2019-09-20 00:35:57 +08:00
<?php
use Hyperf\Tracer\Adapter\JaegerTracerFactory;
2019-09-20 01:01:30 +08:00
use const Jaeger\SAMPLER_TYPE_CONST;
2019-09-20 00:35:57 +08:00
return [
2019-09-20 00:35:57 +08:00
// 选择默认的 Tracer
'default' => env('TRACER_DRIVER', 'jaeger'),
// 这里的代码演示不对 enable 内的配置进行展开
'enable' => [],
2019-09-20 00:35:57 +08:00
'tracer' => [
2019-09-20 00:35:57 +08:00
// Jaeger 驱动配置
'jaeger' => [
2019-09-20 00:35:57 +08:00
'driver' => JaegerTracerFactory::class,
// 项目名称
'name' => env('APP_NAME', 'skeleton'),
'options' => [
// 采样器,默认为所有请求的都追踪
'sampler' => [
2019-09-20 01:01:30 +08:00
'type' => SAMPLER_TYPE_CONST,
'param' => true,
2019-09-20 01:01:30 +08:00
],
// 上报地址
'local_agent' => [
'reporting_host' => env('JAEGER_REPORTING_HOST', 'localhost'),
'reporting_port' => env('JAEGER_REPORTING_PORT', 5775),
],
],
2019-06-03 02:14:37 +08:00
],
],
];
```
2019-09-20 00:35:57 +08:00
关于 Jaeger 的更多配置可以在 [[这里](https://github.com/jonahgeorge/jaeger-client-php)] 查看。
2019-06-03 02:14:37 +08:00
### 配置中间件
配置完驱动之后,采集信息还需要配置一下中间件才能启用采集功能。
打开 `config/autoload/middlewares.php` 文件,在 `http` 节点启用中间件。
```php
<?php
declare(strict_types=1);
return [
'http' => [
2019-12-06 16:48:56 +08:00
\Hyperf\Tracer\Middleware\TraceMiddleware::class,
],
];
```
2019-12-19 12:34:32 +08:00
### 配置 Span tag
`1.1.11` 版本后增加了 Span Tag 配置的功能,对于一些 Hyperf 自动收集追踪信息的 Span Tag 名称,可以通过更改 Span Tag 配置来更改对应的名称,只需在配置文件 `config/autolaod/opentracing.php` 内增加 `tags` 配置即可,参考配置如下。如配置项存在,则以配置项的值为准,如配置项不存在,则以组件的默认值为准。
2019-12-13 16:33:52 +08:00
```php
return [
'tags' => [
2019-12-19 12:34:32 +08:00
// HTTP 客户端 (Guzzle)
2019-12-13 16:33:52 +08:00
'http_client' => [
'http.url' => 'http.url',
'http.method' => 'http.method',
'http.status_code' => 'http.status_code',
],
2019-12-19 12:34:32 +08:00
// Redis 客户端
2019-12-13 16:33:52 +08:00
'redis' => [
'arguments' => 'arguments',
'result' => 'result',
],
2019-12-19 12:34:32 +08:00
// 数据库客户端 (hyper/database)
2019-12-13 16:33:52 +08:00
'db' => [
'db.query' => 'db.query',
'db.statement' => 'db.statement',
'db.query_time' => 'db.query_time',
],
]
];
```
### 更换采样器
2019-06-03 02:14:37 +08:00
2019-09-20 00:35:57 +08:00
默认的采样器为所有请求都记录调用链,这对性能会存在一定程度上的影响,尤其是内存的占用,所以我们只需要在我们希望的时候才对调用链进行追踪,那么我们就需要对采样器进行更换,更换也很简单,以 Zipkin 为例,只需对配置项 `opentracing.zipkin.sampler` 对应的值改为您的采样器对象实例即可,只要您的采样器对象实现了 `Zipkin\Sampler` 接口类即可。
2019-06-03 02:14:37 +08:00
### 接入阿里云链路追踪服务
2019-06-04 11:12:51 +08:00
2019-06-20 15:52:38 +08:00
当我们在使用阿里云的链路追踪服务时,由于对端也是支持 `Zipkin` 的协议的,故可以直接通过在 `condif/autoload/opentracing.php` 配置文件内修改 `endpoint_url` 的值为您对应的阿里云 `region` 的地址,具体地址可在阿里云的链路追踪服务内得到,更多细节可参考 [阿里云链路追踪服务帮助文档](https://help.aliyun.com/document_detail/100031.html?spm=a2c4g.11186623.6.547.68f974dcZlg4Mv)。
2019-06-03 02:14:37 +08:00
2019-11-12 19:46:54 +08:00
### 使用其他 Tracer 驱动
2019-11-12 19:46:54 +08:00
您也可以使用其他任意符合 OpenTracing 协议的 Tracer 驱动。在 Driver 项中,填写任意实现了 `Hyperf\Tracer\Contract\NamedFactoryInterface` 的类就可以了。该接口只有一个 make 函数,参数为驱动名称,需返回一个实现了 OpenTracing\Tracer 的实例。
## Reference
2019-06-03 02:14:37 +08:00
- [Opentracing](https://opentracing.io)
- [Zipkin](https://zipkin.io/)
- [Jaeger](https://www.jaegertracing.io/)
2019-06-03 02:14:37 +08:00
- [Dapper, 大规模分布式系统的跟踪系统](https://bigbully.github.io/Dapper-translation/)