File tree Expand file tree Collapse file tree 9 files changed +10
-28
lines changed
instrumentation/github.com/labstack/echo/otelecho Expand file tree Collapse file tree 9 files changed +10
-28
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
20
20
21
21
- The function signature of ` NewLogProcessor ` in ` go.opentelemetry.io/contrib/processors/minsev ` has changed to accept the added ` Severitier ` interface instead of a ` log.Severity ` . (#6116 )
22
22
- ` NewSDK ` in ` go.opentelemetry.io/contrib/config ` now returns a no-op SDK if ` disabled ` is set to ` true ` . (#6185 )
23
+ - The deprecated ` go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho ` package has found a Code Owner.
24
+ The package is no longer deprecated. (#6207 )
23
25
24
26
### Fixed
25
27
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ instrumentation/github.com/aws/aws-sdk-go-v2/otelaws/ @open-te
47
47
instrumentation /github.com /emicklei /go-restful /otelrestful / @ open-telemetry/go-approvers @ dashpole
48
48
instrumentation /github.com /gin-gonic /gin /otelgin / @ open-telemetry/go-approvers
49
49
instrumentation /github.com /gorilla /mux /otelmux / @ open-telemetry/go-approvers @ akats7
50
- instrumentation /github.com /labstack /echo /otelecho / @ open-telemetry/go-approvers
50
+ instrumentation /github.com /labstack /echo /otelecho / @ open-telemetry/go-approvers @ scorpionknifes
51
51
instrumentation /go.mongodb.org /mongo-driver /mongo /otelmongo / @ open-telemetry/go-approvers
52
52
instrumentation /google.golang.org /grpc /otelgrpc / @ open-telemetry/go-approvers @ dashpole
53
53
Original file line number Diff line number Diff line change 6
6
//
7
7
// Currently only the routing of a received message can be instrumented. To do
8
8
// so, use the Middleware function.
9
- //
10
- // Deprecated: otelecho has no Code Owner.
11
- // After August 21, 2024, it may no longer be supported and may stop
12
- // receiving new releases unless a new Code Owner is found. See
13
- // [this issue] if you would like to become the Code Owner of this module.
14
- //
15
- // [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550
16
9
package otelecho // import "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho"
Original file line number Diff line number Diff line change 1
1
# labstack echo instrumentation example
2
2
3
- :warning : Deprecated: otelecho has no Code Owner.
4
-
5
3
An HTTP server using labstack echo and instrumentation. The server has a
6
4
` /users/:id ` endpoint. The server generates span information to
7
5
` stdout ` .
Original file line number Diff line number Diff line change 1
- // Deprecated: otelecho has no Code Owner.
2
1
module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/example
3
2
4
3
go 1.22
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
11
11
"github.com/labstack/echo/v4"
12
12
13
- "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" // nolint:staticcheck // deprecated.
13
+ "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho"
14
14
"go.opentelemetry.io/otel"
15
15
"go.opentelemetry.io/otel/attribute"
16
16
stdout "go.opentelemetry.io/otel/exporters/stdout/stdouttrace"
Original file line number Diff line number Diff line change 1
- // Deprecated: otelecho has no Code Owner.
2
1
module go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho
3
2
4
3
go 1.22
Original file line number Diff line number Diff line change 1
1
// Copyright The OpenTelemetry Authors
2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
- /*
5
- Package test validates the otelecho instrumentation with the default SDK.
6
-
7
- This package is in a separate module from the instrumentation it tests to
8
- isolate the dependency of the default SDK and not impose this as a transitive
9
- dependency for users.
10
-
11
- Deprecated: otelecho has no Code Owner.
12
- After August 21, 2024, it may no longer be supported and may stop
13
- receiving new releases unless a new Code Owner is found. See
14
- [this issue] if you would like to become the Code Owner of this module.
15
-
16
- [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5550
17
- */
4
+ // Package test validates the otelecho instrumentation with the default SDK.
5
+ //
6
+ // This package is in a separate module from the instrumentation it tests to
7
+ // isolate the dependency of the default SDK and not impose this as a transitive
8
+ // dependency for users.
18
9
package test // import "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho/test"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
"github.com/stretchr/testify/assert"
17
17
"github.com/stretchr/testify/require"
18
18
19
- "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho" // nolint:staticcheck // deprecated.
19
+ "go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho"
20
20
"go.opentelemetry.io/otel"
21
21
"go.opentelemetry.io/otel/codes"
22
22
"go.opentelemetry.io/otel/sdk/trace"
You can’t perform that action at this time.
0 commit comments