OpenTelemetry - CNCF/opentelemetry-dotnet-instrumentation: Release v1.6.0
Name: opentelemetry-dotnet-instrumentation
Owner: OpenTelemetry - CNCF
Release: v1.6.0
Released: 2024-04-29
License: Apache-2.0
Release Assets:
1.6.0
- Core components:
1.8.1
System.Diagnostics.DiagnosticSource
:8.0.0
Changed
- To prevent sensitive information from leaking through query strings, the following instrumentations redact by default any value detected in query string components when building the
url.query
or theurl.full
attributes:OpenTelemetry.Instrumentation.Http
,OpenTelemetry.Instrumentation.AspNetCore
,OpenTelemetry.Instrumentation.AspNet
. For example,?key1=value1&key2=value2
becomes?key1=Redacted&key2=Redacted
. You can customize this behavior through the environment variables. See the instrumentation options table for details.
Dependency updates
- Following packages updated
OpenTelemetry.Instrumentation.Http
from1.8.0
to1.8.1
.
- .NET only, following packages updated
Microsoft.Extensions.Configuration.Binder
from8.0.0
to8.0.1
,OpenTelemetry.Instrumentation.AspNetCore
from1.8.0
to1.8.1
.
- .NET Framework only, following packages updated
OpenTelemetry.Instrumentation.AspNet
from1.8.0-beta.1
to1.8.0-beta.2
.
Fixed
- Stop creating
receive
consumer spans for consume attempts that returned no message. For details, see #3367