Source
static zbx_am_alertpool_t *am_get_alertpool(zbx_am_t *manager, zbx_uint64_t mediatypeid, zbx_uint64_t alertpoolid)
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/*
* The alert queue is implemented as a nested queue.
*
* At the bottom layer is media type queue, enforcing the media type maxsessions setting.
* At the next layer is alert pool queue. Alert pool is an artificial construct to group
* alerts generated by the same source (event source, object and objectid) so that they
* are executed sequentially.
* At the top layer is alert queue.
*
* mediatypes
* alertpools
* alerts
*
* Media type queue is sorted by the timestamp of the minimum item of its alertpool queue.
* Alert pool queue is sorted by the timestamp of the minimum item of its alerts queue.
* Alerts queue is sorted by the alert scheduled send timestamp.
*
* When taking the next alert to send the following actions are done:
* 1) take the next media type object from media type queue
* 2) take the next alert pool object from media type alertpool queue
* 3) take the next alert from alert pool alerts queue
* 4) if media type maxsessions limit has not reached, put the media type object back in queue
*
* When processing alert response the following actions are done:
* 1) find alerts media type and alert pool objects
* 2) cache alert status update to be flushed into database later
* 3) if alert failed and can be retried put it back into its alert pool queue,
* otherwise free the alert object