auxmoney/jaeger-php
最新稳定版本:3.0.2
Composer 安装命令:
composer require auxmoney/jaeger-php
包简介
php client for jaeger
关键字:
README 文档
README
ATTENTION: this is a fork and republication of jukylin/jaeger-php
We opted into forking and publishing the original library in order to maintain our set of opentracing related symfony bundles. The original library seems to be unmaintained currently.
jaeger-php is a library implementing the OpenTracing specification for PHP to connect with the Jaeger Distributed Tracing Platform. It can be used to instrument PHP code to generate tracing data and send it to Jaeger.
Installation
composer require auxmoney/jaeger-php
Usage
First, you need to create a Config object, which serves as the factory to create your Tracer:
// create a config instance $config = \Jaeger\Config::getInstance(); // create a tracer $tracer = $config->initTracer('example service name', '0.0.0.0:6831');
To make the distributed tracing work, you need to extract your SpanContext from somewhere, e.g. $_SERVER:
$spanContext = $tracer->extract(\Opentracing\Formats\TEXT_MAP, $_SERVER);
You can then start tracing by using the common Opentracing interface:
$tracer->startActiveSpan("example operation name", ['child_of' => $spanContext]);
To add metadata to your span, you need to retrieve it first (be sure to check the semantic conventions first):
$span = $tracer->getActiveSpan(); $span->addBaggageItem("user_id", "12345"); $span->setTag("http.url", "http://localhost"); $span->log(["message" => "responded successfully"]); $span->finish();
Finally, at the end of your script, you should flush the original Config. This will flush all created Tracers and all created Spans:
$config->flush();
optional configuration
// optional: generate 128 bit trace ids (default: false) $config->gen128bit(); // optional: disable tracing (default: false) $config->setDisabled(true); // optional: inject custom transport (default: TransportUdp) $config->setTransport($transport); // optional: inject custom reporter (default: RemoteReporter) $config->setReporter($reporter); // optional: inject custom sampler (default: ConstSampler) $config->setSampler($sampler);
Special thanks
Thank you, @jukylin, for creating this library!
统计信息
- 总下载量: 156.99k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-11-15