Skip to content

Commit 7baabd4

Browse files
authored
Deprecate the AWS XRAY sampler (#5648)
Towards #5554
1 parent a2294d7 commit 7baabd4

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3232
If you would like to become a Code Owner of this module and prevent it from being removed, see [#5552]. (#5646)
3333
- The `go.opentelemetry.io/contrib/propagators/aws` package is deprecated.
3434
If you would like to become a Code Owner of this module and prevent it from being removed, see [#5553]. (#5647)
35+
- The `go.opentelemetry.io/contrib/samplers/aws/xray` package is deprecated.
36+
If you would like to become a Code Owner of this module and prevent it from being removed, see [#5554]. (#5647)
3537

3638
[#5542]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542
3739
[#5543]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543
@@ -44,6 +46,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
4446
[#5551]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551
4547
[#5552]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5552
4648
[#5553]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5553
49+
[#5554]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5554
4750

4851
## [1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21
4952

samplers/aws/xray/go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Deprecated: xray has no Code Owner.
12
module go.opentelemetry.io/contrib/samplers/aws/xray
23

34
go 1.21

samplers/aws/xray/remote_sampler.go

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
// Copyright The OpenTelemetry Authors
22
// SPDX-License-Identifier: Apache-2.0
33

4+
// Package xray provide an OpenTelemetry sampler for the AWS XRAY platform.
5+
//
6+
// Deprecated: xray has no Code Owner.
7+
// After August 21, 2024, it may no longer be supported and may stop
8+
// receiving new releases unless a new Code Owner is found. See
9+
// [this issue] if you would like to become the Code Owner of this module.
10+
//
11+
// [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5554
412
package xray // import "go.opentelemetry.io/contrib/samplers/aws/xray"
513

614
import (

0 commit comments

Comments
 (0)