From 0778bbd057560f25f89fd7e89490b64d0ad9cae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Kie=C5=82kowicz?= Date: Thu, 26 Jan 2023 07:37:08 +0100 Subject: [PATCH] Bump OpenTelemetry.Instrumentation.EntityFrameworkCore to 1.0.0.0-beta.4 (#2080) --- docs/plugins.md | 2 +- nuget/OpenTelemetry.AutoInstrumentation.nuspec | 2 +- src/Directory.Packages.props | 2 +- .../Configurations/EnvironmentConfigurationTracerHelper.cs | 2 +- test/IntegrationTests/EntityFrameworkCoreTests.cs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/plugins.md b/docs/plugins.md index f04296a4d..1a31c20f7 100644 --- a/docs/plugins.md +++ b/docs/plugins.md @@ -72,7 +72,7 @@ public class MyPlugin | OpenTelemetry.Exporter.OtlpExporterOptions | OpenTelemetry.Exporter.OpenTelemetryProtocol | 1.4.0-rc.2 | | OpenTelemetry.Instrumentation.AspNet.AspNetInstrumentationOptions | OpenTelemetry.Instrumentation.AspNet | 1.0.0-rc9.7 | | OpenTelemetry.Instrumentation.AspNetCore.AspNetCoreInstrumentationOptions | OpenTelemetry.Instrumentation.AspNetCore | 1.0.0-rc9.11 | -| OpenTelemetry.Instrumentation.EntityFrameworkCore.EntityFrameworkInstrumentationOptions | OpenTelemetry.Instrumentation.EntityFrameworkCore | 1.0.0-beta.3 | +| OpenTelemetry.Instrumentation.EntityFrameworkCore.EntityFrameworkInstrumentationOptions | OpenTelemetry.Instrumentation.EntityFrameworkCore | 1.0.0-beta.4 | | OpenTelemetry.Instrumentation.GrpcNetClient.GrpcClientInstrumentationOptions | OpenTelemetry.Instrumentation.GrpcNetClient | 1.0.0-rc9.11 | | OpenTelemetry.Instrumentation.Http.HttpClientInstrumentationOptions | OpenTelemetry.Instrumentation.Http | 1.0.0-rc9.11 | | OpenTelemetry.Instrumentation.Quartz.QuartzInstrumentationOptions | OpenTelemetry.Instrumentation.Quartz | 1.0.0-alpha.1 | diff --git a/nuget/OpenTelemetry.AutoInstrumentation.nuspec b/nuget/OpenTelemetry.AutoInstrumentation.nuspec index 0c92c88d5..b4fd4061e 100644 --- a/nuget/OpenTelemetry.AutoInstrumentation.nuspec +++ b/nuget/OpenTelemetry.AutoInstrumentation.nuspec @@ -30,7 +30,7 @@ - + diff --git a/src/Directory.Packages.props b/src/Directory.Packages.props index 4e28c547f..3360e0157 100644 --- a/src/Directory.Packages.props +++ b/src/Directory.Packages.props @@ -17,7 +17,7 @@ - + diff --git a/src/OpenTelemetry.AutoInstrumentation/Configurations/EnvironmentConfigurationTracerHelper.cs b/src/OpenTelemetry.AutoInstrumentation/Configurations/EnvironmentConfigurationTracerHelper.cs index 747f77a34..ec7ed7a8c 100644 --- a/src/OpenTelemetry.AutoInstrumentation/Configurations/EnvironmentConfigurationTracerHelper.cs +++ b/src/OpenTelemetry.AutoInstrumentation/Configurations/EnvironmentConfigurationTracerHelper.cs @@ -196,7 +196,7 @@ internal static class EnvironmentConfigurationTracerHelper { lazyInstrumentationLoader.Add(new EntityFrameworkCoreInitializer(pluginManager)); - return builder.AddSource("OpenTelemetry.EntityFrameworkCore"); + return builder.AddSource("OpenTelemetry.Instrumentation.EntityFrameworkCore"); } #endif diff --git a/test/IntegrationTests/EntityFrameworkCoreTests.cs b/test/IntegrationTests/EntityFrameworkCoreTests.cs index 620a92a37..e53848c91 100644 --- a/test/IntegrationTests/EntityFrameworkCoreTests.cs +++ b/test/IntegrationTests/EntityFrameworkCoreTests.cs @@ -34,7 +34,7 @@ public class EntityFrameworkCoreTests : TestHelper { using var collector = new MockSpansCollector(Output); SetExporter(collector); - collector.Expect("OpenTelemetry.EntityFrameworkCore"); + collector.Expect("OpenTelemetry.Instrumentation.EntityFrameworkCore"); RunTestApplication();