先上正菜

PHP项目上了opentelemetry的时候发现有部分片段时间不连续
接入配置(如有需要, 点击这里查看详情)
接入
配置
TEL_PHP_AUTOLOAD_ENABLED=true
TEL_SERVICE_NAME=test
TEL_TRACES_EXPORTER=otlp
TEL_METRICS_EXPORTER=none
TEL_LOGS_EXPORTER=none
TEL_EXPORTER_OTLP_PROTOCOL=grpc
TEL_EXPORTER_OTLP_ENDPOINT=http://
TEL_EXPORTER_OTLP_HEADERS=Authentication=xxx
TEL_EXPORTER_OTLP_TIMEOUT=1000
TEL_EXPORTER_OTLP_TRACES_TIMEOUT=1000
运行
{
"files": [
"_register.php"
]
}
public static function autoload(): bool
{
if (!self::isEnabled() || self::isExcludedUrl()) {
return false;
}
Globals::registerInitializer(function (Configurator $configurator) {
$propagator = (new PropagatorFactory())->create();
if (Sdk::isDisabled()) {
return $configurator->withPropagator($propagator);
}
$emitMetrics = Configuration::getBoolean(Variables::OTEL_PHP_INTERNAL_METRICS_ENABLED);
$resource = ResourceInfoFactory::defaultResource();
$exporter = (new ExporterFactory())->create();
$meterProvider = (new MeterProviderFactory())->create($resource);
$spanProcessor = (new SpanProcessorFactory())->create($exporter, $emitMetrics ? $meterProvider : null);
$tracerProvider = (new TracerProviderBuilder())
->addSpanProcessor($spanProcessor)
->setResource($resource)
->setSampler((new SamplerFactory())->create())
->build();
$loggerProvider = (new LoggerProviderFactory())->create($emitMetrics ? $meterProvider : null, $resource);
ShutdownHandler::register($tracerProvider->shutdown(...));
ShutdownHandler::register($meterProvider->shutdown(...));
ShutdownHandler::register($loggerProvider->shutdown(...));
return $configurator
->withTracerProvider($tracerProvider)
->withMeterProvider($meterProvider)
->withLoggerProvider($loggerProvider)
->withPropagator($propagator)
;
});
return true;
}
案例代码
<?php
namespace App\Service\Tracing;
use OpenTelemetry\API\Globals;
use OpenTelemetry\API\Trace\SpanInterface;
use OpenTelemetry\API\Trace\TracerInterface;
class Tracer
{
protected TracerInterface $tracer;
protected ?SpanInterface $lastSpan = null;
protected ?SpanInterface $rootSpan = null;
protected array $spanMap = [];
public function __construct()
{
$this->tracer = Globals::tracerProvider()
->getTracer('io.opentelemetry.contrib.php.laravel');
}
public static function getInstance(): Tracer
{
return app(Tracer::class);
}
public function startRootSpan($name): void
{
$span = $this->startSpan($name);
$this->rootSpan = $span;
}
public function startAndEndLastSpan($name): SpanInterface
{
$this->endLastSpan();
return $this->startSpan($name);
}
public function startSpan($name): SpanInterface
{
$span = $this->tracer->spanBuilder($name)->startSpan();
$this->spanMap[$name] = $span;
$this->lastSpan = $span;
return $span;
}
public function endRootSpan(): void
{
$this->endSpan($this->rootSpan);
}
public function endLastSpan(): void
{
$this->endSpan($this->lastSpan);
}
public function endSpan(?SpanInterface $span): void
{
if (is_null($span)) {
return;
}
$span->end();
}
}
- 把
Tracer类注册到服务提供者app/Providers/AppServiceProvider.php
<?php
namespace App\Providers;
use App\Utils\Tracing\Tracer;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register()
{
$this->app->scoped(Tracer::class, function () {
return new Tracer();
});
}
public function boot()
{
}
}
<?php
namespace App\Http\Controllers;
use App\Service\Tracing;
class IndexAlbumsController extends Controller
{
public function index()
{
$tracer = Tracer::getInstance();
$tracer->startRootSpan('xxxx');
$tracer->startSpan('s1');
$tracer->startAndEndLastSpan('s2');
$tracer->endLastSpan();
$tracer->endRootSpan();
}
}
问题
- 代码很简单, 就追踪几个函数, 看耗时, 不出意外的话, 意外还是发生了
- 线上偶尔会在
$span->end()的时候耗时几百毫秒, 百思不得其解

查看end()的实现
- 实际上会走到
BatchSpanProcessor类的onEnd方法
class BatchSpanProcessor {
public function onEnd(ReadableSpanInterface $span): void
{
if ($this->closed) {
return;
}
if (!$span->getContext()->isSampled()) {
return;
}
if ($this->queueSize === $this->maxQueueSize) {
$this->dropped++;
return;
}
$this->queueSize++;
$this->batch[] = $span->toSpanData();
$this->nextScheduledRun ??= $this->clock->now() + $this->scheduledDelayNanos;
if (count($this->batch) === $this->maxExportBatchSize) {
$this->enqueueBatch();
}
if ($this->autoFlush) {
$this->flush();
}
}
}
- 所以罪魁祸首
flush方法, 这里会根据配置到达一定数量, 一定时间把链路追踪上报
- 由于
PHP常规运行没有多线程, flush上报链路追踪的时候会阻塞当前进程
解决办法
flush 方法上多线程, 短期内不可能, 估计百分之九十九的项目都是没用多线程的
- opentelemetry.io/docs/collec…使用
Opentelemetry collector代理
- 装作没看到!!!