Skip to content
Snippets Groups Projects
Verified Commit 571aeb51 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3377657 by catch, mondrake: Add database query spans to otel traces

(cherry picked from commit 09077755)
parent f0fda9de
No related branches found
No related tags found
16 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest,!6720Revert "Issue #3358581 by pfrenssen, _tarik_, a.dmitriiev, smustgrave:...,!6560Update ClaroPreRender.php, confirming classes provided are in array format,!6528Issue #3414261 by catch: Add authenticated user umami performance tests,!6501Issue #3263668 by omkar-pd, Wim Leers, hooroomoo: Re-enable inline form errors...,!6354Draft: Issue #3380392 by phma: Updating language weight from the overview reverts label if translated,!6324Issue #3416723 by Ludo.R: Provide a "node type" views default argument,!6119Issue #3405704 by Spokje, longwave: symfony/psr-http-message-bridge major version bump,!5950Issue #3403653 by alexpott, longwave: Incorporate improvements to how contrib runs PHPStan to core
Pipeline #66189 passed
Pipeline: drupal

#66200

    Pipeline: drupal

    #66197

      Pipeline: drupal

      #66195

        +1
        ...@@ -339,6 +339,20 @@ private function openTelemetryTracing(array $messages, string $service_name): vo ...@@ -339,6 +339,20 @@ private function openTelemetryTracing(array $messages, string $service_name): vo
        ->setAttribute('http.url', $url) ->setAttribute('http.url', $url)
        ->startSpan(); ->startSpan();
        $first_byte_span->end($response_wall_time); $first_byte_span->end($response_wall_time);
        $collection = \Drupal::keyValue('performance_test');
        $performance_test_data = $collection->get('performance_test_data');
        $query_events = $performance_test_data['database_events'] ?? [];
        foreach ($query_events as $key => $event) {
        // Use the first part of the database query for the span name.
        $query_span = $tracer->spanBuilder(substr($event->queryString, 0, 64))
        ->setStartTimestamp((int) ($event->startTime * $nanoseconds_per_second))
        ->setAttribute('query.string', $event->queryString)
        ->setAttribute('query.args', var_export($event->args, TRUE))
        ->setAttribute('query.caller', var_export($event->caller, TRUE))
        ->startSpan();
        $query_span->end((int) ($event->time * $nanoseconds_per_second));
        }
        $lcp_timestamp = NULL; $lcp_timestamp = NULL;
        $fcp_timestamp = NULL; $fcp_timestamp = NULL;
        $lcp_size = 0; $lcp_size = 0;
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment