Skip to content

Commit d0e7672

Browse files
committed
Merge pull request #8 from faascape/master
Fix tags management in send_metrics
2 parents 208c1b5 + 2c699e4 commit d0e7672

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)