v0.6.0-beta.1
Pre-release
Pre-release
github-actions
released this
03 Feb 10:49
·
1032 commits
to main
since this release
This beta release is built on top of OpenTelemetry .NET:
- Core components:
1.4.0-rc.3
System.Diagnostics.DiagnosticSource
:7.0.0
Added
- Support configuring
OTEL_*
settings usingApp.config
andWeb.config
. - Add support for Quartz traces instrumentation.
- Add support for EntityFrameworkCore traces instrumentations.
- Add plugin support for
ResourceBuilder ConfigureResource(ResourceBuilder builder)
.
Changed
-
Updated Core components:
1.4.0-rc.3
-
Move
OpenTelemetry.AutoInstrumentation.Native.so
tolinux-x64
directory intracer-home
for Linux glibc,OpenTelemetry.AutoInstrumentation.Native.so
tolinux-musl-x64
for Linux musl andOpenTelemetry.AutoInstrumentation.Native.dylib
toosx-x64
for MacOS. -
Change the way to manage enabled instrumentations. The following environmental variables:
OTEL_DOTNET_AUTO_TRACES_ENABLED_INSTRUMENTATIONS
,OTEL_DOTNET_AUTO_TRACES_DISABLED_INSTRUMENTATIONS
,OTEL_DOTNET_AUTO_METRICS_ENABLED_INSTRUMENTATIONS
,OTEL_DOTNET_AUTO_METRICS_DISABLED_INSTRUMENTATIONS
,OTEL_DOTNET_AUTO_LOGS_ENABLED_INSTRUMENTATIONS
,OTEL_DOTNET_AUTO_LOGS_DISABLED_INSTRUMENTATIONS
are replaced by:
OTEL_DOTNET_AUTO_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_TRACES_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_TRACES_{0}_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_METRICS_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_METRICS_{0}_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_LOGS_INSTRUMENTATION_ENABLED
,OTEL_DOTNET_AUTO_LOGS_{0}_INSTRUMENTATION_ENABLED
.
-
Change instrumentation id for ASP.NET Core traces and metrics instrumentation from
AspNet
toASPNETCORE
.
Fixed
- Fix console error messages
Log: Exception creating FileSink
#1885