vendor/sentry/sentry-symfony/src/EventListener/TracingRequestListener.php line 25

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sentry\SentryBundle\EventListener;
  4. use Sentry\Tracing\Transaction;
  5. use Sentry\Tracing\TransactionContext;
  6. use Symfony\Component\HttpFoundation\Request;
  7. /**
  8.  * This event listener acts on the master requests and starts a transaction
  9.  * to report performance data to Sentry. It gathers useful data like the
  10.  * HTTP status code of the response or the name of the route that handles
  11.  * the request and add them as tags.
  12.  */
  13. final class TracingRequestListener extends AbstractTracingRequestListener
  14. {
  15.     /**
  16.      * This method is called for each subrequest handled by the framework and
  17.      * starts a new {@see Transaction}.
  18.      *
  19.      * @param RequestListenerRequestEvent $event The event
  20.      */
  21.     public function handleKernelRequestEvent(RequestListenerRequestEvent $event): void
  22.     {
  23.         if (!$this->isMainRequest($event)) {
  24.             return;
  25.         }
  26.         /** @var Request $request */
  27.         $request $event->getRequest();
  28.         /** @var float $requestStartTime */
  29.         $requestStartTime $request->server->get('REQUEST_TIME_FLOAT'microtime(true));
  30.         $context TransactionContext::fromSentryTrace($request->headers->get('sentry-trace'''));
  31.         $context->setOp('http.server');
  32.         $context->setName(sprintf('%s %s%s%s'$request->getMethod(), $request->getSchemeAndHttpHost(), $request->getBaseUrl(), $request->getPathInfo()));
  33.         $context->setStartTimestamp($requestStartTime);
  34.         $context->setTags($this->getTags($request));
  35.         $this->hub->setSpan($this->hub->startTransaction($context));
  36.     }
  37.     /**
  38.      * This method is called for each request handled by the framework and
  39.      * ends the tracing on terminate after the client received the response.
  40.      *
  41.      * @param RequestListenerTerminateEvent $event The event
  42.      */
  43.     public function handleKernelTerminateEvent(RequestListenerTerminateEvent $event): void
  44.     {
  45.         $transaction $this->hub->getTransaction();
  46.         if (null === $transaction) {
  47.             return;
  48.         }
  49.         $transaction->finish();
  50.     }
  51.     /**
  52.      * Gets the tags to attach to the transaction.
  53.      *
  54.      * @param Request $request The HTTP request
  55.      *
  56.      * @return array<string, string>
  57.      */
  58.     private function getTags(Request $request): array
  59.     {
  60.         $client $this->hub->getClient();
  61.         $httpFlavor $this->getHttpFlavor($request);
  62.         $tags = [
  63.             'net.host.port' => (string) $request->getPort(),
  64.             'http.method' => $request->getMethod(),
  65.             'http.url' => $request->getUri(),
  66.             'route' => $this->getRouteName($request),
  67.         ];
  68.         if (null !== $httpFlavor) {
  69.             $tags['http.flavor'] = $httpFlavor;
  70.         }
  71.         if (false !== filter_var($request->getHost(), \FILTER_VALIDATE_IP)) {
  72.             $tags['net.host.ip'] = $request->getHost();
  73.         } else {
  74.             $tags['net.host.name'] = $request->getHost();
  75.         }
  76.         if (null !== $request->getClientIp() && null !== $client && $client->getOptions()->shouldSendDefaultPii()) {
  77.             $tags['net.peer.ip'] = $request->getClientIp();
  78.         }
  79.         return $tags;
  80.     }
  81.     /**
  82.      * Gets the HTTP flavor from the request.
  83.      *
  84.      * @param Request $request The HTTP request
  85.      */
  86.     private function getHttpFlavor(Request $request): ?string
  87.     {
  88.         $protocolVersion $request->getProtocolVersion();
  89.         if (null !== $protocolVersion && str_starts_with($protocolVersion'HTTP/')) {
  90.             return substr($protocolVersion, \strlen('HTTP/'));
  91.         }
  92.         return $protocolVersion;
  93.     }
  94. }