Hello,
I was reviewing https://share.zabbix.com/cat-server-...-hp-ilo-snmpv2
and I think there may be a bug. There are predefined `TEMP_*` macros in the template as:
However for example the PSU template trigger use a value `{$TEMP_CRIT:"PSU"}` which was not defined:
What happens in these cases when the value is missing?
Thanks!
I was reviewing https://share.zabbix.com/cat-server-...-hp-ilo-snmpv2
and I think there may be a bug. There are predefined `TEMP_*` macros in the template as:
Code:
<macro>
<macro>{$TEMP_CRIT:"Ambient"}</macro>
<value>35</value>
</macro>
<macro>
<macro>{$TEMP_CRIT_LOW}</macro>
<value>5</value>
</macro>
<macro>
<macro>{$TEMP_CRIT}</macro>
<value>60</value>
</macro>
<macro>
<macro>{$TEMP_WARN:"Ambient"}</macro>
<value>30</value>
</macro>
<macro>
<macro>{$TEMP_WARN}</macro>
<value>50</value>
</macro>
Code:
<expression>{Template Server HP iLO SNMPv2:sensor.temp.value[cpqHeTemperatureCelsius.PSU.{#SNMPINDEX}].avg(5m)}>{$TEMP_CRIT:"PSU"}</expression>
Thanks!
Comment