I managed to find out that line 392 of syslog_alerts.php defines repeatarray using 5-minute intervals (1, 2, 3 for 5, 10, and 15 minutes respectively), which is totally fine with 5-minute poller_interval, since repeat value later gets multiplicated by poller_interval in line 346 of syslog_process.php for calculating silence time.
Unfortunately, selecting 30-minutes Re-Alert Cycle with 1-minute poller_interval effectively uses 6-minute cycle.
From newbie's point of view it seems that it should be OK to multiply repeat values by 300 seconds no matter what poller_interval is (works fine in my case, not sure why poller_inteval was used in first place). Unfortunately, I am not totally sure this will not break something else :).
I managed to find out that line 392 of
syslog_alerts.phpdefinesrepeatarrayusing 5-minute intervals (1, 2, 3 for 5, 10, and 15 minutes respectively), which is totally fine with 5-minutepoller_interval, since repeat value later gets multiplicated bypoller_intervalin line 346 ofsyslog_process.phpfor calculating silence time.Unfortunately, selecting 30-minutes Re-Alert Cycle with 1-minute
poller_intervaleffectively uses 6-minute cycle.From newbie's point of view it seems that it should be OK to multiply repeat values by 300 seconds no matter what
poller_intervalis (works fine in my case, not sure whypoller_intevalwas used in first place). Unfortunately, I am not totally sure this will not break something else :).