We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a76b0c4 commit bb49c80Copy full SHA for bb49c80
1 file changed
datadog_lambda/metric.py
@@ -53,6 +53,9 @@ def lambda_metric(metric_name, value, timestamp=None, tags=None, force_async=Fal
53
tags = tag_dd_lambda_layer(tags)
54
55
if should_use_extension:
56
+ logger.debug(
57
+ "Sending metric %s value %s to Datadog via extension", metric_name, value
58
+ )
59
lambda_stats.distribution(metric_name, value, tags=tags, timestamp=timestamp)
60
else:
61
if flush_to_logs or force_async:
0 commit comments