Skip to content
Open
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
44 changes: 40 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

### Added

- Add test for `Propagator.Inject` function in `opentelemetry-go-contrib/propagators/aws/xray`. (#7399)

### Removed

- The deprecated `StreamServerInterceptor` function from `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` is removed. (#7362)
Expand All @@ -28,7 +24,47 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- The semantic conventions have been upgraded from `v1.27.0` to `v1.32.0` in `go.opentelemetry.io/contrib/bridges/otellogr`. (#7387)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/bridges/otelzap`. (#7389)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/detectors/gcp`. (#7378)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful`. (#7383)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin`. (#7383)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux`. (#7383)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace`. (#7383)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp`. (#7383)
- The semantic conventions have been upgraded in `go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo` to `v1.32.0`. (#7393)
- The semantic conventions have been upgraded in `go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/v2/mongo/otelmongo` to `v1.32.0`. (#7393)
- The semantic conventions have been upgraded in `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws` to `v1.32.0`. (#7394)
- The `messaging.system=AmazonSQS` attribute has been corrected to `messaging.system=aws.sqs`.
- The `net.peer.addr` attribute key has been upgraded to `server.address`.
- The `http.status_code` attribute key has been upgraded to `http.response.status_code`.
- The `db.system=dynamodb` attribute has been corrected to `db.system.name=aws.dynamodb`.
- The deprecated `messaging.operation.type=publish` attribute has been corrected to `messaging.operation.type=send`.
- The semantic conventions have been upgraded from `v1.21.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda`. (#7400)
- The semantic conventions in `go.opentelemetry.io/contrib/instrumentation/host` have been upgraded to `v1.32.0`. (#7390)
- The description of `process.cpu.time` is updated to comply with semantic conventions.
- `process.cpu.time` now uses the `state` attribute instead of `cpu.mode`.
- The `system.cpu.time` metric is renamed to `cpu.time`.
- `cpu.time` now uses the `state` attribute instead of `cpu.mode`.
- `system.memory.usage` now uses the `state` attribute instead of `system.memory.state`.
- `system.memory.utilization` now uses the `state` attribute instead of `system.memory.state`.
- The `system.memory.state` attribute (now `state`) value of `available` is now `free` instead.

### Deprecated

- `AttributeCPUTimeUser` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeCPUTimeSystem` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeCPUTimeOther` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeCPUTimeIdle` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeMemoryAvailable` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeMemoryUsed` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeNetworkTransmit` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)
- `AttributeNetworkReceive` in `go.opentelemetry.io/contrib/instrumentation/host` is deprecated.
Use `go.opentelemetry.io/otel/semconv` instead. (#7390)

### Fixed

Expand Down
Loading