Allow Datadog monitors to be retrieved by id instead of name. (#3456)

pull/18777/head
Fabian Krämer 8 years ago committed by Matt Clay
parent 5454c562e9
commit 320ae068ed

@ -105,6 +105,11 @@ options:
required: false
default: null
version_added: "2.3"
id:
description: ["The id of the alert. If set, will be used instead of the name to locate the alert."]
required: false
default: null
version_added: "2.3"
'''
EXAMPLES = '''
@ -172,7 +177,8 @@ def main():
thresholds=dict(required=False, type='dict', default=None),
tags=dict(required=False, type='list', default=None),
locked=dict(required=False, default=False, type='bool'),
require_full_window=dict(required=False, default=None, type='bool')
require_full_window=dict(required=False, default=None, type='bool'),
id=dict(required=False)
)
)
@ -203,9 +209,16 @@ def _fix_template_vars(message):
def _get_monitor(module):
for monitor in api.Monitor.get_all():
if monitor['name'] == module.params['name']:
return monitor
if module.params['id'] is not None:
monitor = api.Monitor.get(module.params['id'])
if 'errors' in monitor:
module.fail_json(msg="Failed to retrieve monitor with id %s, errors are %s" % (module.params['id'], str(monitor['errors'])))
return monitor
else:
monitors = api.Monitor.get_all()
for monitor in monitors:
if monitor['name'] == module.params['name']:
return monitor
return {}

Loading…
Cancel
Save