We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9b62ced + ec425f6 commit ed20079Copy full SHA for ed20079
datadog_lambda/tracing.py
@@ -238,9 +238,10 @@ def create_function_execution_span(
238
):
239
tags = {}
240
if context:
241
+ function_arn = (context.invoked_function_arn or "").lower()
242
tags = {
243
"cold_start": str(is_cold_start).lower(),
- "function_arn": context.invoked_function_arn,
244
+ "function_arn": function_arn,
245
"request_id": context.aws_request_id,
246
"resource_names": context.function_name,
247
}
0 commit comments