Skip to content
Snippets Groups Projects
Commit f7c91d08 authored by jurgenhaas's avatar jurgenhaas
Browse files

ansible-plugins/uptime#1 Include tracker source and included projects into unique keys for checks

parent a1745e9b
No related branches found
No related tags found
No related merge requests found
......@@ -189,9 +189,10 @@ class ActionModule(ActionBase):
self._request('checks/' + existing.get('_id'), existing, 'POST')
def _findExistingCheck(self, url, type):
def _findExistingCheck(self, url, type, tracker_source, tracker_project_include):
for check in self.checks:
if (check.get('url') == url and check.get('type') == type):
pollerParams = check.get('pollerParams', [])
if (check.get('url') == url and check.get('type') == type and pollerParams.get('tracker_source', '') == tracker_source and pollerParams.get('tracker_project_include', '') == tracker_project_include):
return check
return False
......@@ -284,7 +285,9 @@ class ActionModule(ActionBase):
def _processItem(self, host_vars, item, field):
url = self._buildUrl(item, field)
check = self._buildCheck(host_vars, item, url)
existing = self._findExistingCheck(url, check['type'])
tracker_source = check.get('tracker_source', '')
tracker_project_include = check.get('tracker_project_include', '')
existing = self._findExistingCheck(url, check['type'], tracker_source, tracker_project_include)
if existing:
if check['enabled']:
self._updateCheck(existing, check)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment