-
Notifications
You must be signed in to change notification settings - Fork 388
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
Enable step function tracing at forwarder level #831
Changes from 13 commits
eddcf5d
10902be
b2fe35e
cff1a0e
3806fc5
f330f88
2f0555c
994d0b5
9e13267
cbcef0c
db81dc0
3c62195
2e7ff49
dbd763b
587c198
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -161,6 +161,13 @@ Parameters: | |
- true | ||
- false | ||
Description: Set to false to disable log forwarding, while continuing to forward other observability data, such as metrics and traces from Lambda functions. | ||
DdStepFunctionTraceEnabled: | ||
Type: String | ||
Default: false | ||
AllowedValues: | ||
- true | ||
- false | ||
Description: Set to true to enable tracing for all Step Functions. | ||
DdUseCompression: | ||
Type: String | ||
Default: true | ||
|
@@ -391,6 +398,10 @@ Conditions: | |
Fn::Equals: | ||
- Ref: DdForwardLog | ||
- false | ||
SetDdStepFunctionTraceEnabled: | ||
Fn::Equals: | ||
- Ref: DdStepFunctionTraceEnabled | ||
- true | ||
avedmala marked this conversation as resolved.
Show resolved
Hide resolved
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The console will use the default value in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be the default behavior, here is the flow
|
||
SetDdUseCompression: | ||
Fn::Equals: | ||
- Ref: DdUseCompression | ||
|
@@ -615,6 +626,11 @@ Resources: | |
- SetDdForwardLog | ||
- Ref: DdForwardLog | ||
- Ref: AWS::NoValue | ||
DD_STEP_FUNCTION_TRACE_ENABLED: | ||
Fn::If: | ||
- SetDdStepFunctionTraceEnabled | ||
- Ref: DdStepFunctionTraceEnabled | ||
- Ref: AWS::NoValue | ||
DD_USE_COMPRESSION: | ||
Fn::If: | ||
- SetDdUseCompression | ||
|
@@ -1148,6 +1164,7 @@ Metadata: | |
- DdFetchLambdaTags | ||
- DdFetchLogGroupTags | ||
- DdFetchStepFunctionsTags | ||
- DdStepFunctionTraceEnabled | ||
- TagsCacheTTLSeconds | ||
- SourceZipUrl | ||
- InstallAsLayer | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍