>grep -R repeatdelay zabbix-1.3.3 | wc -l
31
>grep -R repeatdelay zabbix-1.3.4 | wc -l
2
It seems that this part of source code is deleted in 1.3.4
I want to implement escalating repeatdelays ( in this case time between alerts will be calculated by formula `(repeatdelay)*2^(n-1)', where n is count of alerts have been sent allready )
31
>grep -R repeatdelay zabbix-1.3.4 | wc -l
2
It seems that this part of source code is deleted in 1.3.4
Code:
>grep -R repeatdelay zabbix-1.3.4 zabbix-1.3.4/ChangeLog: - added columns actions.maxrepeats, actions.repeatdelay (Alexei) zabbix-1.3.4/frontends/php/create/mysql.sql: repeatdelay integer DEFAULT '600' NOT NULL, >
I want to implement escalating repeatdelays ( in this case time between alerts will be calculated by formula `(repeatdelay)*2^(n-1)', where n is count of alerts have been sent allready )
Both repeats and escalating are needed in our production.
Comment