diff --git a/source/_components/sensor.zabbix.markdown b/source/_components/sensor.zabbix.markdown index ed84c99a14f..e9201ac2e40 100644 --- a/source/_components/sensor.zabbix.markdown +++ b/source/_components/sensor.zabbix.markdown @@ -31,10 +31,22 @@ sensor: individual: true ``` -Configuration variables: - -- **triggers** array(*Required*): Specifies that this sensor is for Zabbix 'triggers'. In the future there will be other Zabbix sensors. -- **name** (*Optional*): Allows you to specify the name for the Sensor, otherwise the host name, as stored in Zabbix, is used. This is useful when you are specifying a list of hostids to monitor as a single count. -- **hostids** (*Optional*): This is a list of Zabbix hostids that we want to filter our count on. -- **individual** (*Optional*): A 'true'/'false' to specify whether we should show individual sensors when a list of hostids is provided. If false, the sensor state will be the count of all triggers for the specified hosts (or all hosts within the Zabbix instance, if hostids isn't provided). +{% configuration %} +triggers: + description: Specifies that this sensor is for Zabbix 'triggers'. In the future there will be other Zabbix sensors. + required: true + type: string +name: + description: Allows you to specify the name for the Sensor, otherwise the host name, as stored in Zabbix, is used. This is useful when you are specifying a list of hostids to monitor as a single count. + required: false + type: strng +hostids: + description: This is a list of Zabbix hostids that we want to filter our count on. + required: false + type: string +individual: + description: A 'true'/'false' to specify whether we should show individual sensors when a list of hostids is provided. If false, the sensor state will be the count of all triggers for the specified hosts (or all hosts within the Zabbix instance, if hostids isn't provided). + required: false + type: boolean + {% endconfiguration %}