OpenTelemetry.Instrumentation.AspNetCore
-
Fixed an issue for spans when
server.port
attribute was not set with
server.address
when it has default values (80
forHTTP
and
443
forHTTPS
protocol).
(#5419) -
Fixed an issue where the
http.request.method_original
attribute was not set
on activity. Now, whenhttp.request.method
is set and the original method
is converted to its canonical form (e.g.,Get
is converted toGET
),
the original valueGet
will be stored inhttp.request.method_original
.
(#5471) -
Fixed the name of spans that have
http.request.method
attribute set to_OTHER
.
The span name will be set asHTTP {http.route}
as per the specification.
(#5484)