From 7b43936fc56b996ef7ec0079238e4d153e73add2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 9 Aug 2023 13:41:02 +0200 Subject: [PATCH 1/9] Update CODEOWNERS --- CODEOWNERS | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index 10305dc3d60..04dbbc8d808 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -25,23 +25,17 @@ CODEOWNERS @MrAlias @MadVikingGod @pellared detectors/aws/ @open-telemetry/go-approvers @Aneurysm9 detectors/gcp/ @open-telemetry/go-approvers @dashpole -exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith +exporters/autoexport @open-telemetry/go-approvers @pellared -instrumentation/github.com/astaxie/beego/otelbeego/ @open-telemetry/go-approvers instrumentation/github.com/aws/aws-lambda-go/otellambda/ @open-telemetry/go-approvers @Aneurysm9 instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/ @open-telemetry/go-approvers @Aneurysm9 -instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/ @open-telemetry/go-approvers instrumentation/github.com/emicklei/go-restful/otelrestful/ @open-telemetry/go-approvers instrumentation/github.com/gin-gonic/gin/otelgin/ @open-telemetry/go-approvers @hanyuancheung -instrumentation/github.com/go-kit/kit/otelkit/ @open-telemetry/go-approvers -instrumentation/github.com/gocql/gocql/otelgocql/ @open-telemetry/go-approvers instrumentation/github.com/gorilla/mux/otelmux/ @open-telemetry/go-approvers instrumentation/github.com/labstack/echo/otelecho/ @open-telemetry/go-approvers -instrumentation/github.com/Shopify/sarama/otelsarama/ @open-telemetry/go-approvers @pellared @hanyuancheung instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/ @open-telemetry/go-approvers instrumentation/google.golang.org/grpc/otelgrpc/ @open-telemetry/go-approvers @dashpole @hanyuancheung instrumentation/gopkg.in/macaron.v1/otelmacaron/ @open-telemetry/go-approvers - instrumentation/host/ @open-telemetry/go-approvers @MadVikingGod instrumentation/net/http/httptrace/otelhttptrace/ @open-telemetry/go-approvers @Aneurysm9 @dmathieu instrumentation/net/http/otelhttp/ @open-telemetry/go-approvers @Aneurysm9 @dmathieu @@ -58,5 +52,4 @@ samplers/aws/xray/ @open-te samplers/jaegerremote/ @open-telemetry/go-approvers samplers/probability/consistent/ @open-telemetry/go-approvers @MadVikingGod -zpages/ @open-telemetry/go-approvers instrgen/ @open-telemetry/go-approvers @open-telemetry/go-instrumentation-approvers @MrAlias @pdelewski From e6f1c6bb2f3c80130e5a247ec3483096a3261f2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 9 Aug 2023 15:36:00 +0200 Subject: [PATCH 2/9] Deprecate packages and modules --- .../Shopify/sarama/otelsarama/example/go.mod | 2 ++ .../astaxie/beego/otelbeego/example/go.mod | 1 + .../gomemcache/memcache/otelmemcache/doc.go | 2 ++ .../memcache/otelmemcache/example/client.go | 2 +- .../gomemcache/memcache/otelmemcache/go.mod | 1 + .../otelmemcache/test/gomemcache_test.go | 2 +- .../go-kit/kit/otelkit/example/go.mod | 1 + .../github.com/gocql/gocql/otelgocql/doc.go | 2 ++ .../gocql/gocql/otelgocql/example/client.go | 2 +- .../gocql/gocql/otelgocql/example/doc.go | 2 ++ .../gocql/gocql/otelgocql/example/go.mod | 1 + .../github.com/gocql/gocql/otelgocql/go.mod | 1 + .../gocql/gocql/otelgocql/test/gocql_test.go | 2 +- zpages/doc.go | 19 +++++++++++++++++++ zpages/go.mod | 1 + 15 files changed, 37 insertions(+), 4 deletions(-) create mode 100644 zpages/doc.go diff --git a/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod b/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod index 5bdce856de9..9f683cd80d9 100644 --- a/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod +++ b/instrumentation/github.com/Shopify/sarama/otelsarama/example/go.mod @@ -1,3 +1,5 @@ +// Deprecated: This module is no longer supported. +// github.com/Shopify/sarama moved to github.com/IBM/sarama. module go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama/example go 1.18 diff --git a/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod b/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod index 69b55b7a407..ff56473dbc0 100644 --- a/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod +++ b/instrumentation/github.com/astaxie/beego/otelbeego/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego/example go 1.18 diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/doc.go b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/doc.go index 177e593d0ea..9f906812057 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/doc.go +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/doc.go @@ -19,4 +19,6 @@ // // The instrumentation works by wrapping the memcached client by calling // `NewClientWithTracing` and tracing it's every operation. +// +// Deprecated: This module is no longer supported. package otelmemcache // import "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache" diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/client.go b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/client.go index fd9c3d16325..d7fe9ce50cb 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/client.go +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/example/client.go @@ -21,7 +21,7 @@ import ( "github.com/bradfitz/gomemcache/memcache" - "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache" + "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache" //nolint:staticcheck // This is deprecated and will be removed in the next release. oteltracestdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace" sdktrace "go.opentelemetry.io/otel/sdk/trace" diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/go.mod b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/go.mod index 441031b3f38..78302935a61 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/go.mod +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache go 1.19 diff --git a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/gomemcache_test.go b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/gomemcache_test.go index 7d29fd859b4..c229de0064b 100644 --- a/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/gomemcache_test.go +++ b/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/test/gomemcache_test.go @@ -22,7 +22,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache" + "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache" //nolint:staticcheck // This is deprecated and will be removed in the next release. "go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/internal" "go.opentelemetry.io/contrib/internal/util" "go.opentelemetry.io/otel/codes" diff --git a/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod b/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod index 2a8a930c4fd..539ab32c3b7 100644 --- a/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod +++ b/instrumentation/github.com/go-kit/kit/otelkit/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit/example go 1.18 diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/doc.go b/instrumentation/github.com/gocql/gocql/otelgocql/doc.go index a28c5face2e..b15c5354603 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/doc.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/doc.go @@ -13,4 +13,6 @@ // limitations under the License. // Package otelgocql instruments the github.com/gocql/gocql package. +// +// Deprecated: This module is no longer supported. package otelgocql // import "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql" diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/example/client.go b/instrumentation/github.com/gocql/gocql/otelgocql/example/client.go index 0926b537d1a..29c98723a1c 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/example/client.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/example/client.go @@ -49,7 +49,7 @@ import ( "go.opentelemetry.io/otel/sdk/metric/aggregation" "go.opentelemetry.io/otel/sdk/trace" - "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql" + "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql" //nolint:staticcheck // This is deprecated and will be removed in the next release. ) const keyspace = "gocql_integration_example" diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/example/doc.go b/instrumentation/github.com/gocql/gocql/otelgocql/example/doc.go index 558f5bee2df..a57be4f3412 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/example/doc.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/example/doc.go @@ -13,4 +13,6 @@ // limitations under the License. // Package main provides an example use of the otelgocql instrumentation. +// +// Deprecated: This module is no longer supported. package main diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod b/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod index 6f336b6bf55..e99f9c8485f 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod +++ b/instrumentation/github.com/gocql/gocql/otelgocql/example/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql/example go 1.18 diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/go.mod b/instrumentation/github.com/gocql/gocql/otelgocql/go.mod index 7052dcb0686..1ea6ae225a6 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/go.mod +++ b/instrumentation/github.com/gocql/gocql/otelgocql/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql go 1.19 diff --git a/instrumentation/github.com/gocql/gocql/otelgocql/test/gocql_test.go b/instrumentation/github.com/gocql/gocql/otelgocql/test/gocql_test.go index ddacd2df72d..0479b98a8ef 100644 --- a/instrumentation/github.com/gocql/gocql/otelgocql/test/gocql_test.go +++ b/instrumentation/github.com/gocql/gocql/otelgocql/test/gocql_test.go @@ -26,7 +26,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql" + "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql" //nolint:staticcheck // This is deprecated and will be removed in the next release. "go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql/internal" "go.opentelemetry.io/contrib/internal/util" "go.opentelemetry.io/otel/attribute" diff --git a/zpages/doc.go b/zpages/doc.go new file mode 100644 index 00000000000..7b06c234952 --- /dev/null +++ b/zpages/doc.go @@ -0,0 +1,19 @@ +// Copyright The OpenTelemetry Authors +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Package zpages implements a collection of HTML pages that display +// telemetry stats. +// +// Deprecated: This module is no longer supported. +package zpages // import "go.opentelemetry.io/contrib/zpages" diff --git a/zpages/go.mod b/zpages/go.mod index 7f4e55c1fe8..d070e832d15 100644 --- a/zpages/go.mod +++ b/zpages/go.mod @@ -1,3 +1,4 @@ +// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/zpages go 1.19 From a94276f76edcfa344005e85e459cdf1163419de8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 9 Aug 2023 15:52:05 +0200 Subject: [PATCH 3/9] Update docs --- instrumentation/README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/instrumentation/README.md b/instrumentation/README.md index ec8d072d912..93951140fad 100644 --- a/instrumentation/README.md +++ b/instrumentation/README.md @@ -43,10 +43,8 @@ The following instrumentation packages are provided for popular Go packages and | Instrumentation Package | Metrics | Traces | | :---------------------: | :-----: | :----: | | [github.com/aws/aws-sdk-go-v2](./github.com/aws/aws-sdk-go-v2/otelaws)| | ✓ | -| [github.com/bradfitz/gomemcache](./github.com/bradfitz/gomemcache/memcache/otelmemcache) | | ✓ | | [github.com/emicklei/go-restful](./github.com/emicklei/go-restful/otelrestful) | | ✓ | | [github.com/gin-gonic/gin](./github.com/gin-gonic/gin/otelgin) | | ✓ | -| [github.com/gocql/gocql](./github.com/gocql/gocql/otelgocql) | ✓ | ✓ | | [github.com/gorilla/mux](./github.com/gorilla/mux/otelmux) | | ✓ | | [github.com/labstack/echo](./github.com/labstack/echo/otelecho) | | ✓ | | [go.mongodb.org/mongo-driver](./go.mongodb.org/mongo-driver/mongo/otelmongo) | | ✓ | @@ -57,7 +55,6 @@ The following instrumentation packages are provided for popular Go packages and | [net/http/httptrace](./net/http/httptrace/otelhttptrace) | | ✓ | | [runtime](./runtime) | ✓ | | - ## Organization In order to ensure the maintainability and discoverability of instrumentation packages, the following guidelines MUST be followed. @@ -66,7 +63,7 @@ In order to ensure the maintainability and discoverability of instrumentation pa All instrumentation packages SHOULD be of the form: -``` +```sh go.opentelemetry.io/contrib/instrumentation/{IMPORT_PATH}/otel{PACKAGE_NAME} ``` @@ -90,7 +87,7 @@ Additionally the following guidelines for package composition need to be followe Therefore, an appropriately configured `go.mod` and `go.sum` need to exist for each package. - To help understand the instrumentation a Go package documentation SHOULD be included. This documentation SHOULD be in a dedicated `doc.go` file if the package is more than one file. - It SHOULD contain useful information like what the purpose of the instrumentation is, how to use it, and any compatibility restrictions that might exist. + It SHOULD contain useful information like what the purpose of the instrumentation is, how to use it, and any compatibility restrictions that might exist. - Examples of how to actually use the instrumentation SHOULD be included. - All instrumentation packages MUST provide an option to accept a `TracerProvider` if it uses a Tracer, a `MeterProvider` if it uses a Meter, and `Propagators` if it handles any context propagation. Also, packages MUST use the default `TracerProvider`, `MeterProvider`, and `Propagators` supplied by the `global` package if no optional one is provided. From dc878a80c27bcdbda7528f4481bfe183078a2838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 9 Aug 2023 15:54:55 +0200 Subject: [PATCH 4/9] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6f8162653f..7edb37c4dec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - The `go.opentelemetry.io/contrib/instrumentation/github.com/astaxie/beego/otelbeego` module is deprecated. (#4092, #4104) - The `go.opentelemetry.io/contrib/instrumentation/github.com/go-kit/kit/otelkit` module is deprecated. (#4093, #4104) - The `go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama` module is deprecated. (#4099) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache` module is deprecated. (#4164) +- The `go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql` module is deprecated. (#4164) +- The `go.opentelemetry.io/contrib/zpages` module is deprecated. (#4164) ### Removed From 39485e7faa22e2c78938a394082fb6d13cd37b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Thu, 10 Aug 2023 09:15:53 +0200 Subject: [PATCH 5/9] Update CODEOWNERS --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 04dbbc8d808..b5a75cea90f 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -25,7 +25,7 @@ CODEOWNERS @MrAlias @MadVikingGod @pellared detectors/aws/ @open-telemetry/go-approvers @Aneurysm9 detectors/gcp/ @open-telemetry/go-approvers @dashpole -exporters/autoexport @open-telemetry/go-approvers @pellared +exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith @pellared instrumentation/github.com/aws/aws-lambda-go/otellambda/ @open-telemetry/go-approvers @Aneurysm9 instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/ @open-telemetry/go-approvers @Aneurysm9 From 309c7e1658c182dcc3a97d6cc075579b143bae46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Thu, 10 Aug 2023 09:16:11 +0200 Subject: [PATCH 6/9] Update CODEOWNERS --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index b5a75cea90f..64d21385c32 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -25,7 +25,7 @@ CODEOWNERS @MrAlias @MadVikingGod @pellared detectors/aws/ @open-telemetry/go-approvers @Aneurysm9 detectors/gcp/ @open-telemetry/go-approvers @dashpole -exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith @pellared +exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith instrumentation/github.com/aws/aws-lambda-go/otellambda/ @open-telemetry/go-approvers @Aneurysm9 instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/ @open-telemetry/go-approvers @Aneurysm9 From 0310edd456bd8918dc69210d5a67d3d9c8021960 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Fri, 11 Aug 2023 10:27:57 +0200 Subject: [PATCH 7/9] Do NOT deprecated zpages --- CODEOWNERS | 2 ++ zpages/doc.go | 2 -- zpages/go.mod | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index 64d21385c32..6a6f5e582f2 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -52,4 +52,6 @@ samplers/aws/xray/ @open-te samplers/jaegerremote/ @open-telemetry/go-approvers samplers/probability/consistent/ @open-telemetry/go-approvers @MadVikingGod +zpages/ @open-telemetry/go-approvers + instrgen/ @open-telemetry/go-approvers @open-telemetry/go-instrumentation-approvers @MrAlias @pdelewski diff --git a/zpages/doc.go b/zpages/doc.go index 7b06c234952..e663fa1c2ee 100644 --- a/zpages/doc.go +++ b/zpages/doc.go @@ -14,6 +14,4 @@ // Package zpages implements a collection of HTML pages that display // telemetry stats. -// -// Deprecated: This module is no longer supported. package zpages // import "go.opentelemetry.io/contrib/zpages" diff --git a/zpages/go.mod b/zpages/go.mod index d070e832d15..7f4e55c1fe8 100644 --- a/zpages/go.mod +++ b/zpages/go.mod @@ -1,4 +1,3 @@ -// Deprecated: This module is no longer supported. module go.opentelemetry.io/contrib/zpages go 1.19 From 5c1fa4bfdb57770312ed412a3dcfb6f9bb8a3bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Tue, 5 Sep 2023 13:59:36 +0200 Subject: [PATCH 8/9] Revert CODEOWNERS changes --- CODEOWNERS | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index 6a6f5e582f2..9d2aec7c634 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -25,17 +25,23 @@ CODEOWNERS @MrAlias @MadVikingGod @pellared detectors/aws/ @open-telemetry/go-approvers @Aneurysm9 detectors/gcp/ @open-telemetry/go-approvers @dashpole -exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith +exporters/autoexport @open-telemetry/go-approvers @MikeGoldsmith @pellared +instrumentation/github.com/astaxie/beego/otelbeego/ @open-telemetry/go-approvers instrumentation/github.com/aws/aws-lambda-go/otellambda/ @open-telemetry/go-approvers @Aneurysm9 instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/ @open-telemetry/go-approvers @Aneurysm9 +instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache/ @open-telemetry/go-approvers instrumentation/github.com/emicklei/go-restful/otelrestful/ @open-telemetry/go-approvers instrumentation/github.com/gin-gonic/gin/otelgin/ @open-telemetry/go-approvers @hanyuancheung +instrumentation/github.com/go-kit/kit/otelkit/ @open-telemetry/go-approvers +instrumentation/github.com/gocql/gocql/otelgocql/ @open-telemetry/go-approvers instrumentation/github.com/gorilla/mux/otelmux/ @open-telemetry/go-approvers instrumentation/github.com/labstack/echo/otelecho/ @open-telemetry/go-approvers +instrumentation/github.com/Shopify/sarama/otelsarama/ @open-telemetry/go-approvers @pellared @hanyuancheung instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo/ @open-telemetry/go-approvers instrumentation/google.golang.org/grpc/otelgrpc/ @open-telemetry/go-approvers @dashpole @hanyuancheung instrumentation/gopkg.in/macaron.v1/otelmacaron/ @open-telemetry/go-approvers + instrumentation/host/ @open-telemetry/go-approvers @MadVikingGod instrumentation/net/http/httptrace/otelhttptrace/ @open-telemetry/go-approvers @Aneurysm9 @dmathieu instrumentation/net/http/otelhttp/ @open-telemetry/go-approvers @Aneurysm9 @dmathieu @@ -44,14 +50,13 @@ instrumentation/runtime/ @open-te propagators/autoprop/ @open-telemetry/go-approvers @MrAlias propagators/aws/ @open-telemetry/go-approvers @Aneurysm9 propagators/b3/ @open-telemetry/go-approvers @pellared -propagators/jaeger/ @open-telemetry/go-approvers +propagators/jaeger/ @open-telemetry/go-approvers @yurishkuro propagators/opencensus/ @open-telemetry/go-approvers @dashpole -propagators/ot/ @open-telemetry/go-approvers +propagators/ot/ @open-telemetry/go-approvers @pellared samplers/aws/xray/ @open-telemetry/go-approvers @Aneurysm9 -samplers/jaegerremote/ @open-telemetry/go-approvers +samplers/jaegerremote/ @open-telemetry/go-approvers @yurishkuro samplers/probability/consistent/ @open-telemetry/go-approvers @MadVikingGod -zpages/ @open-telemetry/go-approvers - +zpages/ @open-telemetry/go-approvers @dashpole instrgen/ @open-telemetry/go-approvers @open-telemetry/go-instrumentation-approvers @MrAlias @pdelewski From 3dee7b5dc783e659262cd1cc1e269a88f4236a2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Paj=C4=85k?= Date: Wed, 6 Sep 2023 09:32:21 +0200 Subject: [PATCH 9/9] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a725a5d23a9..ccd4bb6c9e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,7 +50,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm - The `go.opentelemetry.io/contrib/instrumentation/github.com/Shopify/sarama/otelsarama` module is deprecated. (#4099) - The `go.opentelemetry.io/contrib/instrumentation/github.com/bradfitz/gomemcache/memcache/otelmemcache` module is deprecated. (#4164) - The `go.opentelemetry.io/contrib/instrumentation/github.com/gocql/gocql/otelgocql` module is deprecated. (#4164) -- The `go.opentelemetry.io/contrib/zpages` module is deprecated. (#4164) ### Removed