community.zabbix.zabbix_map module – Create/update/delete Zabbix maps
Note
This module is part of the community.zabbix collection (version 2.2.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.zabbix
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.zabbix.zabbix_map
.
Synopsis
This module allows you to create, modify and delete Zabbix map entries, using Graphviz binaries and text description written in DOT language. Nodes of the graph will become map elements and edges will become links between map elements. See https://en.wikipedia.org/wiki/DOT_(graph_description_language) and https://www.graphviz.org/ for details. Inspired by http://blog.zabbix.com/maps-for-the-lazy/.
The following extra node attributes are supported:
zbx_host
contains name of the host in Zabbix. Use this if desired type of map element ishost
.zbx_group
contains name of the host group in Zabbix. Use this if desired type of map element ishost group
.zbx_sysmap
contains name of the map in Zabbix. Use this if desired type of map element ismap
.zbx_label
contains label of map element.zbx_image
contains name of the image used to display the element in default state.zbx_image_disabled
contains name of the image used to display disabled map element.zbx_image_maintenance
contains name of the image used to display map element in maintenance.zbx_image_problem
contains name of the image used to display map element with problems.zbx_url
contains map element URL inname:url
format. More than one URL could be specified by adding a postfix (e.g.,zbx_url1
,zbx_url2
).The following extra link attributes are supported:
zbx_draw_style
contains link line draw style. Possible values:line
,bold
,dotted
,dashed
.zbx_trigger
contains name of the trigger used as a link indicator inhost_name:trigger_name
format. More than one trigger could be specified by adding a postfix (e.g.,zbx_trigger1
,zbx_trigger2
).zbx_trigger_color
contains indicator color specified either as CSS3 name or as a hexadecimal code starting with#
.zbx_trigger_draw_style
contains indicator draw style. Possible values are the same as forzbx_draw_style
.
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.9
pydotplus
webcolors
Pillow
Graphviz
Parameters
Parameter |
Comments |
---|---|
Graph written in DOT language. |
|
Name of the Zabbix image used to display the element if this element doesn’t have the |
|
Whether the problem trigger will be displayed for elements with a single problem. Choices:
|
|
Height of the map. Default: |
|
Whether icon highlighting is enabled. Choices:
|
|
Basic Auth password |
|
Basic Auth login |
|
Map element label type. Choices:
|
|
Size of white space between map’s borders and its elements. Default: |
|
Name of the map. |
|
State of the map. On On Choices:
|
|
Width of the map. Default: |
Examples
# If you want to use Username and Password to be authenticated by Zabbix Server
- name: Set credentials to access Zabbix Server API
ansible.builtin.set_fact:
ansible_user: Admin
ansible_httpapi_pass: zabbix
# If you want to use API token to be authenticated by Zabbix Server
# https://www.zabbix.com/documentation/current/en/manual/web_interface/frontend_sections/administration/general#api-tokens
- name: Set API token
ansible.builtin.set_fact:
ansible_zabbix_auth_key: 8ec0d52432c15c91fcafe9888500cf9a607f44091ab554dbee860f6b44fac895
###
### Example inventory:
# [web]
# web[01:03].example.com ansible_host=127.0.0.1
# [db]
# db.example.com ansible_host=127.0.0.1
# [backup]
# backup.example.com ansible_host=127.0.0.1
###
### Each inventory host is present in Zabbix with a matching name.
###
### Contents of "map.j2":
# digraph G {
# graph [layout=dot splines=false overlap=scale]
# INTERNET [zbx_url="Google:https://google.com" zbx_image="Cloud_(96)"]
# {% for web_host in groups.web %}
# {% set web_loop = loop %}
# web{{ '%03d' % web_loop.index }} [zbx_host="{{ web_host }}"]
# INTERNET -> web{{ '%03d' % web_loop.index }} [zbx_trigger="{{ web_host }}:Zabbix agent on {HOST.NAME} is unreachable for 5 minutes"]
# {% for db_host in groups.db %}
# {% set db_loop = loop %}
# web{{ '%03d' % web_loop.index }} -> db{{ '%03d' % db_loop.index }}
# {% endfor %}
# {% endfor %}
# { rank=same
# {% for db_host in groups.db %}
# {% set db_loop = loop %}
# db{{ '%03d' % db_loop.index }} [zbx_host="{{ db_host }}"]
# {% for backup_host in groups.backup %}
# {% set backup_loop = loop %}
# db{{ '%03d' % db_loop.index }} -> backup{{ '%03d' % backup_loop.index }} [color="blue"]
# {% endfor %}
# {% endfor %}
# {% for backup_host in groups.backup %}
# {% set backup_loop = loop %}
# backup{{ '%03d' % backup_loop.index }} [zbx_host="{{ backup_host }}"]
# {% endfor %}
# }
# }
###
### Create Zabbix map "Demo Map" made of template "map.j2"
- name: Create Zabbix map
# set task level variables as we change ansible_connection plugin here
vars:
ansible_network_os: community.zabbix.zabbix
ansible_connection: httpapi
ansible_httpapi_port: 443
ansible_httpapi_use_ssl: true
ansible_httpapi_validate_certs: false
ansible_zabbix_url_path: "zabbixeu" # If Zabbix WebUI runs on non-default (zabbix) path ,e.g. http://<FQDN>/zabbixeu
ansible_host: zabbix-example-fqdn.org
community.zabbix.zabbix_map:
name: Demo map
state: present
data: "{{ lookup('template', 'map.j2') }}"
default_image: Server_(64)
expand_problem: no
highlight: no
label_type: label
delegate_to: localhost
run_once: yes