Problem
In the file zabbix_isp_speedtest_template.xml the following macro is defined
<macro>{$SPEEDTEST_TRIGGER_AVG_COUNT}</macro>
<value>#3</value>
<description>Average last X speedtest runs for trigger values. Avoids alerts on single bad run.</description>
Based on false alerts i have seen and the zabbix documentation the pound sign (#) should not be here as the # symbol indicates the last value on the nth value and not and average.
<macro>{$SPEEDTEST_TRIGGER_AVG_COUNT}</macro>
<value>3</value>
<description>Average last X speedtest runs for trigger values. Avoids alerts on single bad run.</description>
Problem In the file zabbix_isp_speedtest_template.xml the following macro is defined
Based on false alerts i have seen and the zabbix documentation the pound sign (#) should not be here as the # symbol indicates the last value on the nth value and not and average.
Source: https://www.zabbix.com/documentation/current/en/manual/config/triggers/expression
Correction