Skip to content

Commit 2c699e4

Browse files
committed
Fix tags in send_metrics
1 parent 208c1b5 commit 2c699e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datadog_callback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def send_metric(self, metric, value, tags=None, host=None):
8282
datadog.api.Metric.send(
8383
metric="ansible.{0}".format(metric),
8484
points=value,
85-
tags=self.default_tags,
85+
tags=tags,
8686
host=host,
8787
)
8888
except Exception, e:

0 commit comments

Comments
 (0)