From 48e9e940c84e20fb0134f2cae860d40acc92191b Mon Sep 17 00:00:00 2001 From: Lucas Angeli Date: Thu, 27 Feb 2025 12:13:31 -0300 Subject: [PATCH] HTTP Server Semantic Convetion --- publish/opentracing.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/publish/opentracing.php b/publish/opentracing.php index c81dfa7..b5ed872 100644 --- a/publish/opentracing.php +++ b/publish/opentracing.php @@ -81,15 +81,15 @@ 'stack_trace' => 'exception.stack_trace', ], 'request' => [ - 'path' => 'request.path', - 'method' => 'request.method', + 'path' => 'http.route', + 'method' => 'http.request.method', 'header' => 'request.header', ], 'coroutine' => [ 'id' => 'coroutine.id', ], 'response' => [ - 'status_code' => 'response.status_code', + 'status_code' => 'http.response.status_code', ], ], ];