From dd52a7621d6f0c4d6cf4bea64f5ffc52ae1eb9ca Mon Sep 17 00:00:00 2001 From: Diogo Kiss Date: Fri, 16 Mar 2018 16:05:03 +0100 Subject: [PATCH] [consul] add maintenance metric to Consul catalog. This PR is a dependency to https://github.com/DataDog/integrations-core/pull/1267. --- checks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checks/__init__.py b/checks/__init__.py index 4cdfb0b84b..5f17f32d7f 100644 --- a/checks/__init__.py +++ b/checks/__init__.py @@ -293,7 +293,7 @@ def get_metrics(self, expire=True): class AgentCheck(object): - OK, WARNING, CRITICAL, UNKNOWN = (0, 1, 2, 3) + OK, WARNING, CRITICAL, UNKNOWN, MAINTENANCE = (0, 1, 2, 3, 4) SOURCE_TYPE_NAME = None