2015-03-28 16:44:40 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
2015-05-22 14:42:22 +02:00
|
|
|
#
|
2015-03-28 16:44:40 +01:00
|
|
|
# (c) 2013-2014, Epic Games, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible 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.
|
|
|
|
#
|
|
|
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
2015-05-22 14:42:22 +02:00
|
|
|
|
2015-03-28 16:44:40 +01:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: zabbix_group
|
|
|
|
short_description: Zabbix host groups creates/deletes
|
|
|
|
description:
|
|
|
|
- Create host groups if they don't exist.
|
|
|
|
- Delete existing host groups if they exist.
|
2015-05-22 14:43:14 +02:00
|
|
|
version_added: "1.8"
|
2015-05-22 14:42:22 +02:00
|
|
|
author:
|
|
|
|
- "(@cove)"
|
|
|
|
- "Tony Minfei Ding"
|
|
|
|
- "Harrison Gu (@harrisongu)"
|
2015-03-28 16:44:40 +01:00
|
|
|
requirements:
|
2015-05-22 14:42:22 +02:00
|
|
|
- "python >= 2.6"
|
|
|
|
- zabbix-api
|
2015-03-28 16:44:40 +01:00
|
|
|
options:
|
|
|
|
server_url:
|
|
|
|
description:
|
|
|
|
- Url of Zabbix server, with protocol (http or https).
|
|
|
|
C(url) is an alias for C(server_url).
|
|
|
|
required: true
|
|
|
|
aliases: [ "url" ]
|
|
|
|
login_user:
|
|
|
|
description:
|
|
|
|
- Zabbix user name.
|
|
|
|
required: true
|
|
|
|
login_password:
|
|
|
|
description:
|
|
|
|
- Zabbix user password.
|
|
|
|
required: true
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Create or delete host group.
|
|
|
|
- Possible values are: present and absent.
|
|
|
|
required: false
|
|
|
|
default: "present"
|
2015-05-22 14:44:19 +02:00
|
|
|
choices: [ "present", "absent" ]
|
2015-03-28 16:44:40 +01:00
|
|
|
timeout:
|
|
|
|
description:
|
|
|
|
- The timeout of API request(seconds).
|
|
|
|
default: 10
|
|
|
|
host_groups:
|
|
|
|
description:
|
|
|
|
- List of host groups to create or delete.
|
|
|
|
required: true
|
2015-05-22 14:44:19 +02:00
|
|
|
aliases: [ "host_group" ]
|
2015-03-28 16:44:40 +01:00
|
|
|
notes:
|
|
|
|
- Too many concurrent updates to the same group may cause Zabbix to return errors, see examples for a workaround if needed.
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Base create host groups example
|
|
|
|
- name: Create host groups
|
|
|
|
local_action:
|
|
|
|
module: zabbix_group
|
|
|
|
server_url: http://monitor.example.com
|
|
|
|
login_user: username
|
|
|
|
login_password: password
|
|
|
|
state: present
|
|
|
|
host_groups:
|
|
|
|
- Example group1
|
|
|
|
- Example group2
|
|
|
|
|
|
|
|
# Limit the Zabbix group creations to one host since Zabbix can return an error when doing concurent updates
|
|
|
|
- name: Create host groups
|
|
|
|
local_action:
|
|
|
|
module: zabbix_group
|
|
|
|
server_url: http://monitor.example.com
|
|
|
|
login_user: username
|
|
|
|
login_password: password
|
|
|
|
state: present
|
|
|
|
host_groups:
|
|
|
|
- Example group1
|
|
|
|
- Example group2
|
|
|
|
when: inventory_hostname==groups['group_name'][0]
|
|
|
|
'''
|
|
|
|
|
|
|
|
try:
|
|
|
|
from zabbix_api import ZabbixAPI, ZabbixAPISubClass
|
|
|
|
from zabbix_api import Already_Exists
|
|
|
|
|
|
|
|
HAS_ZABBIX_API = True
|
|
|
|
except ImportError:
|
|
|
|
HAS_ZABBIX_API = False
|
|
|
|
|
|
|
|
|
|
|
|
class HostGroup(object):
|
|
|
|
def __init__(self, module, zbx):
|
|
|
|
self._module = module
|
|
|
|
self._zapi = zbx
|
|
|
|
|
|
|
|
# create host group(s) if not exists
|
|
|
|
def create_host_group(self, group_names):
|
|
|
|
try:
|
|
|
|
group_add_list = []
|
|
|
|
for group_name in group_names:
|
|
|
|
result = self._zapi.hostgroup.exists({'name': group_name})
|
|
|
|
if not result:
|
|
|
|
try:
|
|
|
|
if self._module.check_mode:
|
|
|
|
self._module.exit_json(changed=True)
|
|
|
|
self._zapi.hostgroup.create({'name': group_name})
|
|
|
|
group_add_list.append(group_name)
|
|
|
|
except Already_Exists:
|
|
|
|
return group_add_list
|
|
|
|
return group_add_list
|
|
|
|
except Exception, e:
|
|
|
|
self._module.fail_json(msg="Failed to create host group(s): %s" % e)
|
|
|
|
|
|
|
|
# delete host group(s)
|
|
|
|
def delete_host_group(self, group_ids):
|
|
|
|
try:
|
|
|
|
if self._module.check_mode:
|
|
|
|
self._module.exit_json(changed=True)
|
|
|
|
self._zapi.hostgroup.delete(group_ids)
|
|
|
|
except Exception, e:
|
|
|
|
self._module.fail_json(msg="Failed to delete host group(s), Exception: %s" % e)
|
|
|
|
|
|
|
|
# get group ids by name
|
|
|
|
def get_group_ids(self, host_groups):
|
|
|
|
group_ids = []
|
|
|
|
|
|
|
|
group_list = self._zapi.hostgroup.get({'output': 'extend', 'filter': {'name': host_groups}})
|
|
|
|
for group in group_list:
|
|
|
|
group_id = group['groupid']
|
|
|
|
group_ids.append(group_id)
|
|
|
|
return group_ids, group_list
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec=dict(
|
2015-03-29 22:42:25 +02:00
|
|
|
server_url=dict(required=True, aliases=['url']),
|
2015-03-28 16:44:40 +01:00
|
|
|
login_user=dict(required=True),
|
2015-05-22 15:05:15 +02:00
|
|
|
login_password=dict(required=True, no_log=True),
|
2015-05-22 14:44:19 +02:00
|
|
|
host_groups=dict(required=True, aliases=['host_group']),
|
|
|
|
state=dict(default="present", choices=['present','absent']),
|
2015-05-22 15:05:15 +02:00
|
|
|
timeout=dict(type='int', default=10)
|
2015-03-28 16:44:40 +01:00
|
|
|
),
|
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
|
|
|
if not HAS_ZABBIX_API:
|
|
|
|
module.fail_json(msg="Missing requried zabbix-api module (check docs or install with: pip install zabbix-api)")
|
|
|
|
|
|
|
|
server_url = module.params['server_url']
|
|
|
|
login_user = module.params['login_user']
|
|
|
|
login_password = module.params['login_password']
|
|
|
|
host_groups = module.params['host_groups']
|
|
|
|
state = module.params['state']
|
|
|
|
timeout = module.params['timeout']
|
|
|
|
|
|
|
|
zbx = None
|
|
|
|
|
|
|
|
# login to zabbix
|
|
|
|
try:
|
|
|
|
zbx = ZabbixAPI(server_url, timeout=timeout)
|
|
|
|
zbx.login(login_user, login_password)
|
|
|
|
except Exception, e:
|
|
|
|
module.fail_json(msg="Failed to connect to Zabbix server: %s" % e)
|
|
|
|
|
|
|
|
hostGroup = HostGroup(module, zbx)
|
|
|
|
|
|
|
|
group_ids = []
|
|
|
|
group_list = []
|
|
|
|
if host_groups:
|
|
|
|
group_ids, group_list = hostGroup.get_group_ids(host_groups)
|
|
|
|
|
|
|
|
if state == "absent":
|
|
|
|
# delete host groups
|
|
|
|
if group_ids:
|
|
|
|
delete_group_names = []
|
|
|
|
hostGroup.delete_host_group(group_ids)
|
|
|
|
for group in group_list:
|
|
|
|
delete_group_names.append(group['name'])
|
|
|
|
module.exit_json(changed=True,
|
|
|
|
result="Successfully deleted host group(s): %s." % ",".join(delete_group_names))
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=False, result="No host group(s) to delete.")
|
|
|
|
else:
|
|
|
|
# create host groups
|
|
|
|
group_add_list = hostGroup.create_host_group(host_groups)
|
|
|
|
if len(group_add_list) > 0:
|
|
|
|
module.exit_json(changed=True, result="Successfully created host group(s): %s" % group_add_list)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=False)
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
main()
|