Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.zabbix Namespace Reference

Namespaces

 const
 
 sensor
 

Classes

class  ZabbixThread
 

Functions

bool setup (HomeAssistant hass, ConfigType config)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
int BATCH_BUFFER_SIZE = 100
 
int BATCH_TIMEOUT = 1
 
string CONF_PUBLISH_STATES_HOST = "publish_states_host"
 
 CONFIG_SCHEMA
 
string DEFAULT_PATH = "zabbix"
 
bool DEFAULT_SSL = False
 
int QUEUE_BACKLOG_SECONDS = 30
 
int RETRY_DELAY = 20
 
int RETRY_INTERVAL = 60
 
string RETRY_MESSAGE = f"%s Retrying in {RETRY_INTERVAL} seconds."
 
int TIMEOUT = 5
 

Detailed Description

Support for Zabbix.

Function Documentation

◆ setup()

bool homeassistant.components.zabbix.setup ( HomeAssistant  hass,
ConfigType  config 
)
Set up the Zabbix component.

Definition at line 72 of file __init__.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.zabbix._LOGGER = logging.getLogger(__name__)
private

Definition at line 39 of file __init__.py.

◆ BATCH_BUFFER_SIZE

int homeassistant.components.zabbix.BATCH_BUFFER_SIZE = 100

Definition at line 53 of file __init__.py.

◆ BATCH_TIMEOUT

int homeassistant.components.zabbix.BATCH_TIMEOUT = 1

Definition at line 52 of file __init__.py.

◆ CONF_PUBLISH_STATES_HOST

string homeassistant.components.zabbix.CONF_PUBLISH_STATES_HOST = "publish_states_host"

Definition at line 41 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.zabbix.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: INCLUDE_EXCLUDE_BASE_FILTER_SCHEMA.extend(
4  {
5  vol.Required(CONF_HOST): cv.string,
6  vol.Optional(CONF_PASSWORD): cv.string,
7  vol.Optional(CONF_PATH, default=DEFAULT_PATH): cv.string,
8  vol.Optional(CONF_SSL, default=DEFAULT_SSL): cv.boolean,
9  vol.Optional(CONF_USERNAME): cv.string,
10  vol.Optional(CONF_PUBLISH_STATES_HOST): cv.string,
11  }
12  )
13  },
14  extra=vol.ALLOW_EXTRA,
15 )

Definition at line 55 of file __init__.py.

◆ DEFAULT_PATH

string homeassistant.components.zabbix.DEFAULT_PATH = "zabbix"

Definition at line 44 of file __init__.py.

◆ DEFAULT_SSL

bool homeassistant.components.zabbix.DEFAULT_SSL = False

Definition at line 43 of file __init__.py.

◆ QUEUE_BACKLOG_SECONDS

int homeassistant.components.zabbix.QUEUE_BACKLOG_SECONDS = 30

Definition at line 48 of file __init__.py.

◆ RETRY_DELAY

int homeassistant.components.zabbix.RETRY_DELAY = 20

Definition at line 47 of file __init__.py.

◆ RETRY_INTERVAL

int homeassistant.components.zabbix.RETRY_INTERVAL = 60

Definition at line 49 of file __init__.py.

◆ RETRY_MESSAGE

string homeassistant.components.zabbix.RETRY_MESSAGE = f"%s Retrying in {RETRY_INTERVAL} seconds."

Definition at line 50 of file __init__.py.

◆ TIMEOUT

int homeassistant.components.zabbix.TIMEOUT = 5

Definition at line 46 of file __init__.py.