Jorim Tielemans c0d8b1fbf0 Clean up wxz (#7025)
Titles
Trailing spaces
Boolean capitalization
2018-10-23 11:08:53 +02:00

1.3 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, featured, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer logo ha_category featured ha_release ha_iot_class
page Zabbix Instructions on how to integrate Zabbix into Home Assistant. 2016-12-13 22:57 true false true true zabbix.png System Monitor false 0.37 Local Polling

The zabbix component is the main component to connect to a Zabbix monitoring instance via the Zabbix API.

{% linkable_title Configuration %}

To set the Zabbix component up, add the following information to your configuration.yaml file:

# Example configuration.yaml entry
zabbix:
  host: 192.168.0.100

{% configuration %} host: description: Your Zabbix server. required: true type: string path: description: Path to your Zabbix install. required: false type: string default: "/zabbix/" ssl: description: Set to True if your Zabbix installation is using SSL. required: false type: boolean default: false username: description: Your Zabbix username. required: false type: string password: description: Your Zabbix password. required: false type: string {% endconfiguration %}

{% linkable_title Full configuration %}

# Example configuration.yaml entry
zabbix:
  host: ZABBIX_HOST
  path: ZABBIX_PATH
  ssl: False
  username: USERNAME
  password: PASSWORD