-
Couldn't load subscription status.
- Fork 46
fix(dsm): set dsm checkpoint for all records in event #643
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
base: main
Are you sure you want to change the base?
Changes from 9 commits
c0906a0 8230b07 e2cd3c5 5cf2059 90480bb 6936bba 268c1e5 2f8dfaa 63e41cb e5a0903 103ffa1 6c2fbbd 2067363 f2b2dc3 1a1a1d9 6bcbd0a 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 | ||||
|---|---|---|---|---|---|---|
| | @@ -248,91 +248,100 @@ def extract_context_from_sqs_or_sns_event_or_context( | |||||
| except Exception: | ||||||
| logger.debug("Failed extracting context as EventBridge to SQS.") | ||||||
| | ||||||
| try: | ||||||
| first_record = event.get("Records")[0] | ||||||
| source_arn = first_record.get("eventSourceARN", "") | ||||||
| | ||||||
| # logic to deal with SNS => SQS event | ||||||
| if "body" in first_record: | ||||||
| body_str = first_record.get("body") | ||||||
| try: | ||||||
| body = json.loads(body_str) | ||||||
| if body.get("Type", "") == "Notification" and "TopicArn" in body: | ||||||
| logger.debug("Found SNS message inside SQS event") | ||||||
| first_record = get_first_record(create_sns_event(body)) | ||||||
| except Exception: | ||||||
| pass | ||||||
| | ||||||
| msg_attributes = first_record.get("messageAttributes") | ||||||
| if msg_attributes is None: | ||||||
| sns_record = first_record.get("Sns") or {} | ||||||
| # SNS->SQS event would extract SNS arn without this check | ||||||
| if event_source.equals(EventTypes.SNS): | ||||||
| source_arn = sns_record.get("TopicArn", "") | ||||||
| msg_attributes = sns_record.get("MessageAttributes") or {} | ||||||
| dd_payload = msg_attributes.get("_datadog") | ||||||
| if dd_payload: | ||||||
| # SQS uses dataType and binaryValue/stringValue | ||||||
| # SNS uses Type and Value | ||||||
| dd_json_data = None | ||||||
| dd_json_data_type = dd_payload.get("Type") or dd_payload.get("dataType") | ||||||
| if dd_json_data_type == "Binary": | ||||||
| import base64 | ||||||
| context = None | ||||||
| for idx, record in enumerate(event.get("Records", [])): | ||||||
| try: | ||||||
| source_arn = record.get("eventSourceARN", "") | ||||||
| dd_ctx = None | ||||||
| | ||||||
| # logic to deal with SNS => SQS event | ||||||
| if "body" in record: | ||||||
| body_str = record.get("body") | ||||||
| try: | ||||||
| body = json.loads(body_str) | ||||||
| if body.get("Type", "") == "Notification" and "TopicArn" in body: | ||||||
| logger.debug("Found SNS message inside SQS event") | ||||||
| record = get_first_record(create_sns_event(body)) | ||||||
| except Exception: | ||||||
| pass | ||||||
| | ||||||
| msg_attributes = record.get("messageAttributes") | ||||||
| if msg_attributes is None: | ||||||
| sns_record = record.get("Sns") or {} | ||||||
| # SNS->SQS event would extract SNS arn without this check | ||||||
| if event_source.equals(EventTypes.SNS): | ||||||
| source_arn = sns_record.get("TopicArn", "") | ||||||
| msg_attributes = sns_record.get("MessageAttributes") or {} | ||||||
| dd_payload = msg_attributes.get("_datadog") | ||||||
| if dd_payload: | ||||||
| # SQS uses dataType and binaryValue/stringValue | ||||||
| # SNS uses Type and Value | ||||||
| # fmt: off | ||||||
| dd_json_data = None | ||||||
| dd_json_data_type = dd_payload.get("Type") or dd_payload.get("dataType") | ||||||
| if dd_json_data_type == "Binary": | ||||||
| import base64 | ||||||
| | ||||||
| dd_json_data = dd_payload.get("binaryValue") or dd_payload.get("Value") | ||||||
| if dd_json_data: | ||||||
| dd_json_data = base64.b64decode(dd_json_data) | ||||||
| elif dd_json_data_type == "String": | ||||||
| dd_json_data = dd_payload.get("stringValue") or dd_payload.get("Value") | ||||||
| # fmt: on | ||||||
| else: | ||||||
| logger.debug( | ||||||
| "Datadog Lambda Python only supports extracting trace" | ||||||
| "context from String or Binary SQS/SNS message attributes" | ||||||
| ) | ||||||
| | ||||||
| dd_json_data = dd_payload.get("binaryValue") or dd_payload.get("Value") | ||||||
| if dd_json_data: | ||||||
| dd_json_data = base64.b64decode(dd_json_data) | ||||||
| elif dd_json_data_type == "String": | ||||||
| dd_json_data = dd_payload.get("stringValue") or dd_payload.get("Value") | ||||||
| else: | ||||||
| logger.debug( | ||||||
| "Datadog Lambda Python only supports extracting trace" | ||||||
| "context from String or Binary SQS/SNS message attributes" | ||||||
| ) | ||||||
| dd_data = json.loads(dd_json_data) | ||||||
| | ||||||
| if idx == 0: | ||||||
| if is_step_function_event(dd_data): | ||||||
| try: | ||||||
| return extract_context_from_step_functions( | ||||||
| dd_data, None | ||||||
| ) | ||||||
| except Exception: | ||||||
| logger.debug( | ||||||
| "Failed to extract Step Functions context from SQS/SNS event." | ||||||
| ) | ||||||
| context = propagator.extract(dd_data) | ||||||
| if not config.data_streams_enabled: | ||||||
| ||||||
| break | ||||||
| dd_ctx = dd_data | ||||||
| elif idx == 0: | ||||||
| # Handle case where trace context is injected into attributes.AWSTraceHeader | ||||||
| # example:Root=1-654321ab-000000001234567890abcdef;Parent=0123456789abcdef;Sampled=1 | ||||||
| attrs = event.get("Records")[0].get("attributes") | ||||||
| ||||||
| attrs = event.get("Records")[0].get("attributes") | |
| attrs = record.get("attributes") |
Outdated
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.
maybe put this logic in the extract_context I suggested above. The extract_context can take an argument: extract_from_xray?
(extract_context is probably not a great name, I let you find a better one)
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.
Hmm. I might be misinterpreting but I'm not sure we should have one function return both a Context() object and the return of a json.loads(). I ended up splitting the x-ray extractor into another helper, let me know what you think
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.
if context is extracted from event bridge, we don't set a checkpoint. Is that expected?
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.
The tracers never inject DSM context in the case of event bridge or step functions. I'm not sure this is the PR to be adding the functionality for these event types