Skip to content

Commit

Permalink
Merge pull request #1776 from DataDog/remh/fix_couchbase_sc_tags
Browse files Browse the repository at this point in the history
[couchbase] Fix service check tags
  • Loading branch information
talwai committed Jul 30, 2015
2 parents 160df9e + e10d41f commit 7220d1c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion checks.d/couchbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ def get_data(self, server, instance):
tags=service_check_tags, message=str(e))
raise
else:
self.service_check(self.SERVICE_CHECK_NAME, AgentCheck.OK)
self.service_check(self.SERVICE_CHECK_NAME, AgentCheck.OK,
tags=service_check_tags)

couchbase['stats'] = overall_stats

Expand Down

0 comments on commit 7220d1c

Please sign in to comment.