Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek authored Jun 9, 2023
2 parents 3913b90 + 9fe038b commit c89bfd0
Show file tree
Hide file tree
Showing 12 changed files with 54 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/OpenTelemetry.Exporter.Geneva/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
[RS0026](https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/Microsoft.CodeAnalysis.PublicApiAnalyzers.md#rs0026-do-not-add-multiple-public-overloads-with-optional-parameters).
([#1218](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1218))

* Fix the issue of running into the `ArgumentException`: `An instance of
EventSource with Guid edc24920-e004-40f6-a8e1-0e6e48f39d84 already exists.`
when using multiple instances of `GenevaMetricExporter`.
([#1225](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1225))

## 1.5.0-rc.1

Released 2023-Jun-05
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public GenevaMetricExporter(GenevaMetricExporterOptions options)
case TransportProtocol.Unspecified:
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
this.metricDataTransport = new MetricEtwDataTransport();
this.metricDataTransport = MetricEtwDataTransport.Shared;
break;
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,14 @@ internal sealed class MetricEtwDataTransport : EventSource, IMetricDataTransport
{
private readonly int fixedPayloadEndIndex;

public MetricEtwDataTransport()
static MetricEtwDataTransport()
{
Shared = new();
}

public static readonly MetricEtwDataTransport Shared;

private MetricEtwDataTransport()
{
unsafe
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-rc9.9

Released 2023-Jun-09

* Update `OpenTelemetry.Api` to `1.5.0`.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down
8 changes: 8 additions & 0 deletions src/OpenTelemetry.Instrumentation.AspNet/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

## 1.0.0-rc9.9

Released 2023-Jun-09

* Release together with `OpenTelemetry.Instrumentation.AspNet.TelemetryHttpModule`
due to update `OpenTelemetry.Api` to `1.5.0`.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

## 1.0.0-rc9.8

Released 2023-Feb-27
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
* Added `Filter` public API on `EntityFrameworkInstrumentationOptions` to
enable filtering of instrumentation.
([#1203](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1203))

## 1.0.0-beta.7

Released 2023-Jun-09

* Updated OTel SDK package version to 1.5.0
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))
Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Instrumentation.MySqlData/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-beta.7

Released 2023-Jun-09

* Update OTel API version to `1.5.0`.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))
* Removes `AddMySqlDataInstrumentation` method with default configure parameter.
Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Instrumentation.Process/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 0.5.0-beta.3

Released 2023-Jun-09

* Update OpenTelemetry API to 1.5.0
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Instrumentation.Quartz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-alpha.3

Released 2023-Jun-09

* Update OpenTelemetry.Api to 1.5.0.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-rc9.10

Released 2023-Jun-09

* Update OTel API version to `1.5.0`.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.Instrumentation.Wcf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-rc.10

Released 2023-Jun-09

* Update OTel SDK version to `1.5.0`.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down
4 changes: 4 additions & 0 deletions src/OpenTelemetry.ResourceDetectors.Container/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0-beta.4

Released 2023-Jun-09

* Updates to 1.5.0 of OpenTelemetry SDK.
([#1220](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1220))

Expand Down

0 comments on commit c89bfd0

Please sign in to comment.