Skip to content

Commit

Permalink
fix issue 2698
Browse files Browse the repository at this point in the history
Signed-off-by: Shi, Stone <[email protected]>
  • Loading branch information
shijiadong2022 committed Aug 1, 2024
1 parent 001165f commit 0a3a8e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def client_response_hook(span: Span, scope: dict[str, Any], message: dict[str, A
_set_http_url,
_set_http_user_agent,
_set_status,
set_string_attribute,
)
from opentelemetry.instrumentation.asgi.types import (
ClientRequestHook,
Expand Down Expand Up @@ -354,13 +355,12 @@ def collect_request_attributes(
result, path, path, query_string, sem_conv_opt_in_mode
)
if http_url:
if _report_old(sem_conv_opt_in_mode) or (
sem_conv_opt_in_mode == _HTTPStabilityMode.HTTP_DUP
):
_set_http_url(
result, remove_url_credentials(http_url), sem_conv_opt_in_mode
if _report_old(sem_conv_opt_in_mode):
set_string_attribute(
result,
SpanAttributes.HTTP_URL,
remove_url_credentials(http_url),
)

http_method = scope.get("method", "")
if http_method:
_set_http_method(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
SERVER_PORT,
)
from opentelemetry.semconv.attributes.url_attributes import (
URL_FULL,
URL_PATH,
URL_QUERY,
URL_SCHEME,
Expand Down Expand Up @@ -446,7 +445,6 @@ def validate_outputs(
SERVER_ADDRESS: "127.0.0.1",
NETWORK_PROTOCOL_VERSION: "1.0",
URL_PATH: "/",
URL_FULL: "http://127.0.0.1/",
CLIENT_ADDRESS: "127.0.0.1",
CLIENT_PORT: 32767,
HTTP_RESPONSE_STATUS_CODE: 200,
Expand Down Expand Up @@ -719,7 +717,6 @@ def update_expected_server(expected):
SpanAttributes.HTTP_URL: "http://0.0.0.0/",
SERVER_ADDRESS: "0.0.0.0",
SERVER_PORT: 80,
URL_FULL: "http://0.0.0.0/",
}
)
return expected
Expand Down Expand Up @@ -1092,7 +1089,6 @@ def test_websocket_both_semconv(self):
SERVER_ADDRESS: self.scope["server"][0],
NETWORK_PROTOCOL_VERSION: self.scope["http_version"],
URL_PATH: self.scope["path"],
URL_FULL: f'{self.scope["scheme"]}://{self.scope["server"][0]}{self.scope["path"]}',
CLIENT_ADDRESS: self.scope["client"][0],
CLIENT_PORT: self.scope["client"][1],
HTTP_RESPONSE_STATUS_CODE: 200,
Expand Down Expand Up @@ -1672,7 +1668,6 @@ def test_request_attributes_both_semconv(self):
SERVER_ADDRESS: "127.0.0.1",
URL_PATH: "/",
URL_QUERY: "foo=bar",
URL_FULL: "http://127.0.0.1/?foo=bar",
SERVER_PORT: 80,
URL_SCHEME: "http",
NETWORK_PROTOCOL_VERSION: "1.0",
Expand Down Expand Up @@ -1701,7 +1696,6 @@ def test_query_string_both_semconv(self):
self.scope,
_HTTPStabilityMode.HTTP_DUP,
)
self.assertEqual(attrs[URL_FULL], "http://127.0.0.1/?foo=bar")
self.assertEqual(
attrs[SpanAttributes.HTTP_URL], "http://127.0.0.1/?foo=bar"
)
Expand Down

0 comments on commit 0a3a8e7

Please sign in to comment.