hi guys,
curious to know if nginx opentelemetry package available like opentracing https://docs.nginx.com/nginx/admin-guide/dynamic-modules/opentracing/?
however I see this thread where it says under development kubernetes/ingress-nginx#5883.
please check.
I also worked with one of the other maintainers yesterday to talk about semantic versioning for OpenTelemetry-PHP. Would love some feedback on it!
https://docs.google.com/document/d/1qJn8LnCyl1oYAev6dTShC_Icdl1InQf8jXl8f5qPGfg/edit?usp=sharing
Hi Guys, Need some help in generating ParentBased spans for remote requests.
When ever I generate a ParentBased span, it is appearing as a root span in the Jaeger UI. It is not appearing under the current active span.
This is the part of php code I have written for this.
$traceId = $request->headers->get('X-B3-TraceId');
$spanId = $request->headers->get('X-B3-SpanId');
$parentContext = new SpanContext(
$traceId,
$spanId,
1
);
$root = new AlwaysOnSampler();
$sampler = new ParentBased($root);
$sampler->shouldSample(
$parentContext,
$traceId,
$spanId,
'parent-based',
API\SpanKind::KIND_SERVER
);
$span = $tracer->startAndActivateSpanFromContext('parent-based', $parentContext, true) ;
$tracer->endActiveSpan();
Currently it looks like this: https://www.screencast.com/users/banish1979/folders/Default/media/bd2ab5c9-d47e-4aab-8fb6-617524c42925
I want the span to appear like this: https://www.screencast.com/users/banish1979/folders/Default/media/d3d0f220-6844-426f-8fc0-cd111225b322