If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
from db how can I clear the queue of sending email notifications?
First:TRUNCATE TABLE `escalations`
But if you asked the question exactly, then this is not your case.
Once, I investigated how the Zabbix server works. The text is crude, be careful. Results:
Every 30 seconds the server (the value set by parameter SenderFrequency the server configuration file) make the query (where a.status = 0 and a.mediatypeid = mt.mediatypeid and a.alerttype = 0) from the table 'alerts'. If anything is found then the routine 'execute_action' starts, which does an immediate sending of the email.
So, i think trying to do a request to make the status of alerts = 1. Or delete some fresh data from table or others....
Comment