uniondrug / trace
Uniondrug Trace Client Component for uniondrug/framework
Installs: 1 399
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- uniondrug/framework: ^2.0
README
分布式调用链跟踪客户端
安装
$ cd project-home
$ composer require uniondrug/trace
$ cp vendor/uniondrug/trace/trace.php config/
修改 app.php
配置文件,注入服务,服务名称:traceClient
。
return [ 'default' => [ ...... 'providers' => [ ...... \Uniondrug\Trace\TraceClientServiceProvider::class, ], ], ];
配置
配置文件在 trace.php
中,
<?php /** * Trace中心的配置文件。 * * service: HTTP方式的采集地址 * timeout: 连接超时时间,单位 秒,默认 30 */ return [ 'default' => [ 'service' => 'http://ip:port', 'timeout' => 30, ], ];
使用
trace默认在TraceMiddleware和HTTPClient中使用,无需单独使用。