File tree 6 files changed +16
-3
lines changed
instrumentation/github.com/aws/aws-lambda-go/otellambda
6 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -18,10 +18,13 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
18
18
If you would like to become a Code Owner of this module and prevent it from being removed, see [ #5543 ] . (#5637 )
19
19
- The ` go.opentelemetry.io/contrib/detectors/aws/eks ` package is deprecated.
20
20
If you would like to become a Code Owner of this module and prevent it from being removed, see [ #5544 ] . (#5640 )
21
+ - The ` go.opentelemetry.io/contrib/detectors/aws/lambda ` package is deprecated.
22
+ If you would like to become a Code Owner of this module and prevent it from being removed, see [ #5545 ] . (#5641 )
21
23
22
24
[ #5542 ] : https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5542
23
25
[ #5543 ] : https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5543
24
26
[ #5544 ] : https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5544
27
+ [ #5545 ] : https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5545
25
28
[ #5551 ] : https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5551
26
29
27
30
## [ 1.27.0/0.52.0/0.21.0/0.7.0/0.2.0] - 2024-05-21
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
+ // Package lambda provide an OpenTelemetry resource detector for AWS Lambda
5
+ // instances.
6
+ //
7
+ // Deprecated: lambda has no Code Owner.
8
+ // After August 21, 2024, it may no longer be supported and may stop
9
+ // receiving new releases unless a new Code Owner is found. See
10
+ // [this issue] if you would like to become the Code Owner of this module.
11
+ //
12
+ // [this issue]: https://github.com/open-telemetry/opentelemetry-go-contrib/issues/5545
4
13
package lambda // import "go.opentelemetry.io/contrib/detectors/aws/lambda"
5
14
6
15
import (
Original file line number Diff line number Diff line change
1
+ // Deprecated: lambda has no Code Owner.
1
2
module go.opentelemetry.io/contrib/detectors/aws/lambda
2
3
3
4
go 1.21
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
14
14
awsConfig "github.com/aws/aws-sdk-go-v2/config"
15
15
"github.com/aws/aws-sdk-go-v2/service/s3"
16
16
17
- lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda"
17
+ lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated.
18
18
"go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda"
19
19
"go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws"
20
20
"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp"
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import (
19
19
"github.com/aws/aws-lambda-go/lambdacontext"
20
20
"github.com/stretchr/testify/assert"
21
21
22
- lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda"
22
+ lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated.
23
23
"go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda"
24
24
"go.opentelemetry.io/contrib/propagators/aws/xray"
25
25
"go.opentelemetry.io/otel/attribute"
Original file line number Diff line number Diff line change 7
7
"context"
8
8
"os"
9
9
10
- lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda"
10
+ lambdadetector "go.opentelemetry.io/contrib/detectors/aws/lambda" // nolint:staticcheck // deprecated.
11
11
"go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-lambda-go/otellambda"
12
12
"go.opentelemetry.io/contrib/propagators/aws/xray"
13
13
"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc"
You can’t perform that action at this time.
0 commit comments