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.
1 parent 7bdc7d6 commit 10d910bCopy full SHA for 10d910b
datadog_lambda/trigger.py
@@ -315,8 +315,8 @@ def extract_http_tags(event):
315
path = apigateway_v2_http.get("path")
316
method = apigateway_v2_http.get("method")
317
318
- if path:
319
- http_tags["http.url_details.path"] = path
+ if path and http_tags.get("http.url"):
+ http_tags["http.url"] += path
320
if method:
321
http_tags["http.method"] = method
322
0 commit comments