Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleaned up changelog and added resource spec link. #2966

Merged
merged 4 commits into from
Mar 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/trace/extending-the-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,5 +315,7 @@ A demo ResourceDetector is shown [here](./MyResourceDetector.cs).
specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#span-exporter)
* [Processor
specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#span-processor)
* [Resource
Yun-Ting marked this conversation as resolved.
Show resolved Hide resolved
specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/resource/sdk.md)
* [Sampler
specification](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk.md#sampler)
20 changes: 8 additions & 12 deletions src/OpenTelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,30 @@

## Unreleased

* Publicize required methods to allow for custom implementations of resource
detectors.
([2949](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2949/))

* Make `IResourceDetector` public to allow custom implementations of resource
detectors.
([2897](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2897))
* Added support for implementing custom `ResourceDetector`.
([#2949](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2949/)
[#2897](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2897))

* Perf improvement for Histogram, by implementing lock-free updates.
([2951](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2951))
([#2951](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2951))

## 1.2.0-rc2

Released 2022-Feb-02

* Make `MetricPoint` of `MetricPointAccessor` readonly.
([2736](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2736))
([#2736](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2736))

* Fail-fast when using AddView with guaranteed conflict.
([2751](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2751))
([#2751](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2751))

* Swallow `ObjectDisposedException` from the `BatchExportProcessor` worker
thread.
([2844](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2844))
([#2844](https://github.com/open-telemetry/opentelemetry-dotnet/issues/2844))

* Performance improvement: when emitting metrics, users are strongly advised to
provide tags with same Key order, to achieve maximum performance.
([2805](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2805/files))
([#2805](https://github.com/open-telemetry/opentelemetry-dotnet/pull/2805/files))

## 1.2.0-rc1

Expand Down