-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Step Functions Trace Merging Support (#588)
* initial impl for setting and using the new contexts * fix current tests and lint * fix JSON parsing in StepFunctionContext creation * add state machine case to trigger tag parsing
- Loading branch information
Showing
7 changed files
with
419 additions
and
205 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"_datadog": { | ||
"Execution": { | ||
"Id": "arn:aws:states:ca-central-1:425362996713:execution:MyStateMachine-wsx8chv4d:1356a963-42a5-48b0-ba3f-73bde559a50c", | ||
"StartTime": "2024-11-13T16:46:47.715Z", | ||
"Name": "1356a963-42a5-48b0-ba3f-73bde559a50c", | ||
"RoleArn": "arn:aws:iam::425362996713:role/service-role/StepFunctions-MyStateMachine-wsx8chv4d-role-1su0fkfd3", | ||
"RedriveCount": 0 | ||
}, | ||
"StateMachine": { | ||
"Id": "arn:aws:states:ca-central-1:425362996713:stateMachine:MyStateMachine-wsx8chv4d", | ||
"Name": "MyStateMachine-wsx8chv4d" | ||
}, | ||
"State": { | ||
"Name": "Lambda Invoke", | ||
"EnteredTime": "2024-11-13T16:46:47.740Z", | ||
"RetryCount": 0 | ||
}, | ||
"RootExecutionId": "arn:aws:states:ca-central-1:425362996713:execution:MyStateMachine-wsx8chv4d:1356a963-42a5-48b0-ba3f-73bde559a50c", | ||
"serverless-version": "v1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.