We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b4811f commit ed46843Copy full SHA for ed46843
src/Bridge/ContextInjector.php
@@ -122,6 +122,12 @@ public function onRequest(GetResponseEvent $event)
122
&& $request->headers->has($this->headerName)
123
&& ($context = $this->registry[$this->format]->decode($request->headers->get($this->headerName)))) {
124
$this->injectable->assign($context);
125
+
126
+ if ($request->server->has('REQUEST_TIME_FLOAT')) {
127
+ $span = $this->tracer->start('symfony.start')
128
+ ->start((int)($request->server->get('REQUEST_TIME_FLOAT') * 1000000));
129
+ $this->tracer->finish($span);
130
+ }
131
}
132
133
$this->spans->push(
0 commit comments