-
Notifications
You must be signed in to change notification settings - Fork 30
/
icinga_scheduled_downtime.py
269 lines (247 loc) · 7.94 KB
/
icinga_scheduled_downtime.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2020 T-Systems Multimedia Solutions GmbH
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
#
# This module is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
from __future__ import absolute_import, division, print_function
__metaclass__ = type
DOCUMENTATION = """
---
module: icinga_scheduled_downtime
short_description: Manage downtimes in Icinga2
description:
- Add or remove a downtime to Icinga2 through the director API.
author: Daniel Uhlmann (@xFuture603)
extends_documentation_fragment:
- ansible.builtin.url
- telekom_mms.icinga_director.common_options
version_added: '1.25.0'
notes:
- This module supports check mode.
options:
state:
description:
- Apply feature state.
choices: [ "present", "absent" ]
default: present
type: str
object_name:
description:
- Icinga object name for this downtime.
aliases: ['name']
required: true
type: str
disabled:
description:
- Disabled objects will not be deployed.
default: false
type: bool
choices: [true, false]
author:
description:
- Name of the downtime author.
- Required if I(state) is C(present).
type: str
comment:
description:
- A descriptive comment for the downtime.
- Required if I(state) is C(present).
type: str
fixed:
description:
- Whether this downtime is fixed or flexible.
If unsure please check the related documentation https://icinga.com/docs/icinga2/latest/doc/08-advanced-topics/#downtimes
- Required if I(state) is C(present).
type: bool
choices: [true, false]
default: false
with_services:
description:
- Whether you only downtime the hosts or add some services with it.
type: bool
choices: [true, false]
default: true
ranges:
description:
- The period which should be downtimed
type: dict
default: {}
apply_to:
description:
- Whether this dependency should affect hosts or services
- Required if I(state) is C(present).
type: str
choices: ["host", "service"]
assign_filter:
description:
- The filter where the downtime will take effect.
type: str
duration:
description:
- How long the downtime lasts.
Only has an effect for flexible (non-fixed) downtimes.
Time in seconds, supported suffixes include ms (milliseconds), s (seconds), m (minutes), h (hours) and d (days).
To express "90 minutes" you might want to write 1h 30m
type: str
append:
description:
- Do not overwrite the whole object but instead append the defined properties.
- Note - Appending to existing vars, imports or any other list/dict is not possible. You have to overwrite the complete list/dict.
- Note - Variables that are set by default will also be applied, even if not set.
type: bool
choices: [true, false]
version_added: '1.25.0'
"""
EXAMPLES = """
- name: create icinga_scheduled_downtime
telekom_mms.icinga_director.icinga_scheduled_downtime:
url: "{{ icinga_url }}"
url_username: "{{ icinga_user }}"
url_password: "{{ icinga_pass }}"
disabled: false
object_name: "foodowntime"
state: present
author: testuser
comment: test
fixed: true
with_services: true
apply_to: host
assign_filter: 'host.name="foohost"'
duration: 500
ranges:
"tuesday": "00:00-24:00"
- name: create icinga_scheduled_downtime2
telekom_mms.icinga_director.icinga_scheduled_downtime:
url: "{{ icinga_url }}"
url_username: "{{ icinga_user }}"
url_password: "{{ icinga_pass }}"
disabled: false
object_name: "foodowntime2"
state: present
author: testuser
comment: test
fixed: false
with_services: false
apply_to: host
assign_filter: 'host.name="foohost"'
duration: 500
ranges:
"tuesday": "00:00-24:00"
- name: update icinga_scheduled_downtime2
telekom_mms.icinga_director.icinga_scheduled_downtime:
url: "{{ icinga_url }}"
url_username: "{{ icinga_user }}"
url_password: "{{ icinga_pass }}"
object_name: "foodowntime2"
state: present
duration: 1000
append: true
apply_to: host
with_services: false
"""
RETURN = r""" # """
from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.urls import url_argument_spec
from ansible_collections.telekom_mms.icinga_director.plugins.module_utils.icinga import (
Icinga2APIObject,
)
# ===========================================
# Module execution.
#
def main():
# use the predefined argument spec for url
argument_spec = url_argument_spec()
# add our own arguments
argument_spec.update(
state=dict(default="present", choices=["absent", "present"]),
url=dict(required=True),
append=dict(type="bool", choices=[True, False]),
object_name=dict(required=True, aliases=["name"]),
disabled=dict(type="bool", default=False, choices=[True, False]),
apply_to=dict(choices=["host", "service"]),
assign_filter=dict(required=False),
author={},
comment={},
duration=dict(required=False),
fixed=dict(type="bool", choices=[True, False], default=False),
ranges=dict(type="dict", required=False, default={}),
with_services=dict(type="bool", default=True, choices=[True, False]),
)
# Define the main module
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True,
)
# Icinga expects 'y' or 'n' instead of booleans for option "with_services"
if module.params["with_services"]:
_withservices = "y"
else:
_withservices = "n"
# Icinga expects 'yes' or 'no' instead of booleans for option "fixed"
if module.params["fixed"]:
_fixed = "y"
else:
_fixed = "n"
# When deleting objects, only the name is necessary, so we cannot use
# required=True in the argument_spec. Instead we define here what is
# necessary when state is present and we do not append to an existing object
# We cannot use "required_if" here, because we rely on module.params.
# These are defined at the same time we'd define the required_if arguments.
if (
module.params["state"] == "present"
and not module.params["append"]
and not (
module.params["apply_to"]
and module.params["author"]
and module.params["comment"]
and _fixed in ("y", "n")
)
):
module.fail_json(
msg="missing required arguments: apply_to, author, comment, fixed."
)
data_keys = [
"object_name",
"disabled",
"apply_to",
"assign_filter",
"author",
"comment",
"duration",
"ranges",
]
data = {}
if module.params["append"]:
for k in data_keys:
if module.params[k]:
data[k] = module.params[k]
else:
for k in data_keys:
data[k] = module.params[k]
data["object_type"] = "apply"
data["fixed"] = _fixed
data["with_services"] = _withservices
icinga_object = Icinga2APIObject(
module=module, path="/scheduled-downtime", data=data
)
changed, diff = icinga_object.update(module.params["state"])
module.exit_json(
changed=changed,
diff=diff,
)
# import module snippets
if __name__ == "__main__":
main()