Bump OpenTelemetry.Instrumentation.EntityFrameworkCore to 1.0.0.0-beta.4 (#2080)
This commit is contained in:
parent
622e437541
commit
0778bbd057
|
@ -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 |
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<dependency id="OpenTelemetry.Shims.OpenTracing" version="1.0.0-rc9.11" />
|
||||
<dependency id="OpenTelemetry.Exporter.OpenTelemetryProtocol.Logs" version="1.4.0-rc.2" />
|
||||
<dependency id="OpenTelemetry.Instrumentation.AspNetCore" version="1.0.0-rc9.11" />
|
||||
<dependency id="OpenTelemetry.Instrumentation.EntityFrameworkCore" version="1.0.0-beta.3" />
|
||||
<dependency id="OpenTelemetry.Instrumentation.EntityFrameworkCore" version="1.0.0-beta.4" />
|
||||
<dependency id="OpenTelemetry.Instrumentation.MySqlData" version="1.0.0-beta.5" />
|
||||
<dependency id="OpenTelemetry.Instrumentation.StackExchangeRedis" version="1.0.0-rc9.7" />
|
||||
</group>
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
<PackageVersion Include="OpenTelemetry.Extensions.Propagators" Version="1.4.0-rc.2" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNet" Version="1.0.0-rc9.7" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.0.0-rc9.11" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.EntityFrameworkCore" Version="1.0.0-beta.3" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.EntityFrameworkCore" Version="1.0.0-beta.4" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.GrpcNetClient" Version="1.0.0-rc9.11" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.MySqlData" Version="1.0.0-beta.5" />
|
||||
<PackageVersion Include="OpenTelemetry.Instrumentation.Process" Version="1.0.0-alpha.4" />
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue