Skip to content

Commit dc434f7

Browse files
committed
refactor: only populate server address if missing
1 parent 61ada6c commit dc434f7

File tree

1 file changed

+2
-1
lines changed
  • opentelemetry-instrumentation/src/opentelemetry/instrumentation

1 file changed

+2
-1
lines changed

opentelemetry-instrumentation/src/opentelemetry/instrumentation/_semconv.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,8 @@ def _set_http_host_server(result, host, sem_conv_opt_in_mode):
354354
if _report_old(sem_conv_opt_in_mode):
355355
set_string_attribute(result, SpanAttributes.HTTP_HOST, host)
356356
if _report_new(sem_conv_opt_in_mode):
357-
set_string_attribute(result, SERVER_ADDRESS, host)
357+
if not result.get(SERVER_ADDRESS):
358+
set_string_attribute(result, SERVER_ADDRESS, host)
358359

359360

360361
# net.peer.ip -> net.sock.peer.addr

0 commit comments

Comments
 (0)