Skip to content

Commit

Permalink
Fix service check tag (#5679)
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianVeaux authored Feb 10, 2020
1 parent 241838d commit 15c76d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapr/datadog_checks/mapr/mapr.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def check(self, _):
conn = self.get_connection()
except Exception:
self.service_check(
SERVICE_CHECK, AgentCheck.CRITICAL, self.base_tags + ['topic_path:{}'.format(self.topic_path)]
SERVICE_CHECK, AgentCheck.CRITICAL, self.base_tags + ['topic:{}'.format(self.topic_path)]
)
raise
else:
Expand Down

0 comments on commit 15c76d3

Please sign in to comment.