Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AWS Lambda wrapper enhancements: Trace methods enhancements and Activity creation behaviour changes. #408

Merged
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2e8d92f
#403
rypdal Jun 7, 2022
bbf6448
- removed flag for ignoring x-ray propagation: x-ray is used as a fal…
rypdal Jun 8, 2022
f7a3571
extended AWSLambdaWrapper unit tests (#403)
rypdal Jun 8, 2022
78649d6
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 9, 2022
ad6d9b2
Added workaround IgnoreAWSXRayPropagation flag (#403).
rypdal Jun 9, 2022
41e7583
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 10, 2022
be71276
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 14, 2022
2c8f907
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 20, 2022
2ca5828
1. removed tags parameter: default function tags are derived from typ…
rypdal Jun 20, 2022
13c47cd
Removed unused using (#403)
rypdal Jun 21, 2022
03ff4e1
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 22, 2022
bef83c3
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 23, 2022
8ef6345
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jun 29, 2022
40b8087
Added support of API Gateway HTTP API version 2 payload proxy format …
rypdal Jun 29, 2022
2e0ee96
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 11, 2022
3ae0b9f
- moved setting of function tags from OnFunctionStart to AWSLambdaUti…
rypdal Jul 11, 2022
746c1e5
- updated phrasing in xml-doc (#403)
rypdal Jul 11, 2022
9b0dc24
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 13, 2022
94d7cc6
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 20, 2022
6591210
(#403)
rypdal Jul 20, 2022
564fb28
- review suggestion: keep empty headers (#403)
rypdal Jul 20, 2022
3cc4629
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 25, 2022
274e6ba
AWS Lambda unit tests refactoring: renaming, removing redundant tests…
rypdal Jul 25, 2022
b187bcd
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 26, 2022
6205306
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 28, 2022
902a707
- applied review suggestions (#403)
rypdal Jul 28, 2022
dc06bee
- renaming of option for x-ray extraction disabling (#403)
rypdal Jul 28, 2022
9ea5d18
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
rypdal Jul 29, 2022
72bf5c0
- simplification: replace array copy with linq expression (#403)
rypdal Jul 29, 2022
aa4ec43
applied improvements from review (#403)
rypdal Jul 29, 2022
226b405
Update src/OpenTelemetry.Contrib.Instrumentation.AWSLambda/Implementa…
rypdal Jul 29, 2022
0a304a4
added minor suggestions (#403)
rypdal Jul 29, 2022
3605aea
Merge branch 'issue/AWS-Lambda-wrapper-and-parent-context' of https:/…
rypdal Jul 29, 2022
76fc16c
- renamed the method to avoid confusions (#403)
rypdal Jul 29, 2022
c114fd0
Update src/OpenTelemetry.Contrib.Instrumentation.AWSLambda/Implementa…
rypdal Jul 29, 2022
a5228b9
Update src/OpenTelemetry.Contrib.Instrumentation.AWSLambda/Implementa…
rypdal Jul 29, 2022
8994534
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
utpilla Jul 29, 2022
54d7016
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
utpilla Aug 4, 2022
851511c
Merge branch 'main' into issue/AWS-Lambda-wrapper-and-parent-context
utpilla Aug 5, 2022
04392cc
Added brief changes description to CHANGELOG (#403)
rypdal Aug 5, 2022
cd9ffa8
Shortened descriptions in CHANGELOG (#403)
rypdal Aug 5, 2022
cc51acf
CHANGELOG entry lines break (#403)
rypdal Aug 5, 2022
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// <copyright file="AWSLambdaInstrumentationOptions.cs" company="OpenTelemetry Authors">
// 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.
// </copyright>

namespace OpenTelemetry.Contrib.Instrumentation.AWSLambda
{
/// <summary>
/// AWS lambda instrumentation options.
/// </summary>
public class AWSLambdaInstrumentationOptions
{
/// <summary>
/// Gets or sets a value indicating whether AWS X-Ray propagation should be ignored.
/// </summary>
public bool IgnoreAWSXRayPropagation { get; set; }
rypdal marked this conversation as resolved.
Show resolved Hide resolved
}
}
Loading