stop whining if _SESSION etc are not defined

This commit is contained in:
Andrew Dolgov 2023-10-21 10:24:23 +03:00
parent 492c4eecfb
commit 3bf275e445
No known key found for this signature in database
GPG Key ID: 1A56B4FA25D4AF2A
1 changed files with 3 additions and 3 deletions

View File

@ -54,9 +54,9 @@ class Tracer {
$span = $this->tracer->spanBuilder($_SESSION['name'] ?? 'not-logged-in')
->setParent($context)
->setSpanKind(SpanKind::KIND_SERVER)
->setAttribute('php.request', json_encode($_REQUEST))
->setAttribute('php.server', json_encode($_SERVER))
->setAttribute('php.session', json_encode($_SESSION))
->setAttribute('php.request', json_encode($_REQUEST ?? []))
->setAttribute('php.server', json_encode($_SERVER ?? []))
->setAttribute('php.session', json_encode($_SESSION ?? []))
->startSpan();
$scope = $span->activate();