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

[WIP] Make scope attributes as identifying for Tracer, Meter, Logger #5903

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Add `ReservoirProvider`, `HistogramReservoirProvider` and `FixedSizeReservoirProvider` to `go.opentelemetry.io/otel/sdk/metric/exemplar` to make it convenient to use providers of Reservoirs. (#5861)
- The `go.opentelemetry.io/otel/semconv/v1.27.0` package.
The package contains semantic conventions from the `v1.27.0` version of the OpenTelemetry Semantic Conventions. (#5894)
- Add `Attributes attribute.Set` field to `Scope` in `go.opentelemetry.io/otel/sdk/instrumentation`.
The `Tracer`, `Meter`, `Logger` returned by the SDK providers now handle scope attributes that it is now one of the identifying fields. (#5903)
- `go.opentelemetry.io/otel/exporters/stdout/stdouttrace` emits the instrumentation scope attributes. (#5903)
- `go.opentelemetry.io/otel/exporters/stdout/stdoutmetric` emits the instrumentation scope attributes. (#5903)
- `go.opentelemetry.io/otel/exporters/stdout/stdoutlog` emits the instrumentation scope attributes. (#5903)

### Fixed

Expand Down
Loading