Source
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2025 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.
**/
/**
* @var CPartial $this
* @var array $data
*/
$parents = [];
while ($parent = array_shift($data['service']['parents'])) {
$parents[] = (new CLink($parent['name'],
(new CUrl('zabbix.php'))
->setArgument('action', 'service.list')
->setArgument('serviceid', $parent['serviceid'])
))->setAttribute('data-serviceid', $parent['serviceid']);
$parents[] = CViewHelper::showNum($parent['children']);
if (!$data['service']['parents']) {
break;
}
$parents[] = ', ';
}
$slas = [];
if (array_key_exists('slas', $data)) {
foreach ($data['slas'] as $sla) {
$sla_html = [
new CLink($sla['name'],
(new CUrl('zabbix.php'))
->setArgument('action', 'slareport.list')
->setArgument('filter_slaid', $sla['slaid'])
->setArgument('filter_set', 1)
)
];
if ($sla['sli']['sli']) {
$hint = (new CTable())
->addClass(ZBX_STYLE_LIST_TABLE)
->setHeader([_('Reporting period'), _('SLO'), _('SLI'), _('Uptime'), _('Downtime'), _('Error budget')]);
foreach (array_reverse($sla['sli']['sli'], true) as $period_index => $sli) {