Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
It is only used by the deprecated interceptor, and is unused by `NewClientHandler` and `NewServerHandler`. (#7601)
- `Extract` and `Inject` in `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` are deprecated.
These functions were initially exposed in the public API, but are now considered unnecessary. (#7689)
- The `go.opentelemetry.io/contrib/detectors/aws/ec2` package is deprecated, use `go.opentelemetry.io/contrib/detectors/aws/ec2/v2` instead. (#7725)

### Removed

Expand Down
2 changes: 2 additions & 0 deletions detectors/aws/ec2/ec2.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0

// Package ec2 provides a resource detector for EC2 instances.
//
// Deprecated: use go.opentelemetry.io/contrib/detectors/aws/ec2/v2 instead.
Comment thread
carsontham marked this conversation as resolved.
package ec2 // import "go.opentelemetry.io/contrib/detectors/aws/ec2"

import (
Expand Down
1 change: 1 addition & 0 deletions detectors/aws/ec2/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Deprecated: use go.opentelemetry.io/contrib/detectors/aws/ec2/v2 instead.
module go.opentelemetry.io/contrib/detectors/aws/ec2

go 1.23.0
Expand Down
Loading