The url.full semantic attribute is missing from http.client spans created by the core fetch instrumentation.
packages/core/src/fetch.ts (getFetchSpanAttributes) sets url, http.url, server.address, http.query, and http.fragment, but it does not set url.full.
This should be added to match the OpenTelemetry semantic conventions and the behavior of the browser fetch instrumentation (packages/browser/src/tracing/request.ts), which already sets url.full.
The
url.fullsemantic attribute is missing fromhttp.clientspans created by the core fetch instrumentation.packages/core/src/fetch.ts(getFetchSpanAttributes) setsurl,http.url,server.address,http.query, andhttp.fragment, but it does not seturl.full.This should be added to match the OpenTelemetry semantic conventions and the behavior of the browser fetch instrumentation (
packages/browser/src/tracing/request.ts), which already setsurl.full.