Update sensor.zabbix.markdown related to #6385 (#6463)

Configuration variable explanation style update.
This commit is contained in:
kernehed 2018-10-03 12:42:17 +02:00 committed by Fabian Affolter
parent c13869e5a7
commit 2810a4a828

View File

@ -31,10 +31,22 @@ sensor:
individual: true individual: true
``` ```
Configuration variables: {% configuration %}
triggers:
- **triggers** array(*Required*): Specifies that this sensor is for Zabbix 'triggers'. In the future there will be other Zabbix sensors. description: 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. required: true
- **hostids** (*Optional*): This is a list of Zabbix hostids that we want to filter our count on. type: string
- **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). 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 %}