community.zabbix.zabbix_proxy_info – Gather information about Zabbix proxy
Note
This plugin is part of the community.zabbix collection (version 1.5.1).
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
.
To use it in a playbook, specify: community.zabbix.zabbix_proxy_info
.
New in version 1.5.0: of community.zabbix
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.6
zabbix-api >= 0.5.4
Parameters
Parameter |
Comments |
---|---|
Basic Auth password |
|
Basic Auth login |
|
Zabbix user password. If not set the environment variable |
|
Zabbix user name. If not set the environment variable |
|
Also return list of hosts monitored by the proxy. Choices:
|
|
Name of the Zabbix proxy. |
|
URL of Zabbix server, with protocol (http or https). If not set the environment variable |
|
The timeout of API request (seconds). Default: 10 |
|
If set to False, SSL certificates will not be validated. This should only be used on personally controlled sites using self-signed certificates. If not set the environment variable Choices:
|
Notes
Note
If you use login_password=zabbix, the word “zabbix” is replaced by “****” in all module output, because login_password uses
no_log
. See this FAQ for more information.
Examples
- name: Get zabbix proxy info alongside the list of hosts monitored by the proxy
community.zabbix.zabbix_proxy_info:
server_url: "http://zabbix.example.com/zabbix/"
login_user: admin
login_password: secret
proxy_name: zbx01.example.com
proxy_hosts: True
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
example Returned: always Sample: {“auto_compress”: “1”, “custom_interfaces”: “0”, “description”: “ExampleProxy”, “discover”: “0”, “flags”: “0”, “host”: “ExampleProxy”, “hosts”: [{“host”: “ExampleHost”, “hostid”: “10453”}], “interface”: {“available”: “0”, “details”: [], “disable_until”: “0”, “dns”: “ExampleProxy.local”, “error”: “”, “errors_from”: “0”, “hostid”: “10452”, “interfaceid”: “10”, “ip”: “10.1.1.2”, “main”: “1”, “port”: “10051”, “type”: “0”, “useip”: “1”}, “ipmi_authtype”: “-1”, “ipmi_password”: “”, “ipmi_privilege”: “2”, “ipmi_username”: “”, “lastaccess”: “0”, “maintenance_from”: “0”, “maintenance_status”: “0”, “maintenance_type”: “0”, “maintenanceid”: “0”, “name”: “”, “proxy_address”: “”, “proxy_hostid”: “0”, “proxyid”: “10452”, “status”: “6”, “templateid”: “0”, “tls_accept”: “1”, “tls_connect”: “1”, “tls_issuer”: “”, “tls_subject”: “”, “uuid”: “”} |
Authors
Dusan Matejka (@D3DeFi)