--- title: Zabbix description: Instructions on how to integrate Zabbix into Home Assistant. ha_category: - System Monitor - Sensor ha_release: 0.37 ha_iot_class: Local Polling ha_domain: zabbix --- The `zabbix` integration is the main integration to connect to a [Zabbix](https://www.zabbix.com/) monitoring instance via the Zabbix API. There is currently support for the following device types within Home Assistant: - [Sensor](#sensor) ## Configuration To set the Zabbix integration up, add the following information to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry zabbix: host: IP_ADDRESS ``` {% 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 %} ### Full configuration ```yaml # Example configuration.yaml entry zabbix: host: ZABBIX_HOST path: ZABBIX_PATH ssl: false username: USERNAME password: PASSWORD ``` ## Sensor The `zabbix` sensor platform let you monitor the current count of active triggers for your [Zabbix](https://www.zabbix.com/) monitoring instance.