Source
<?php declare(strict_types = 0);
/*
** 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 Affero General Public License as published by the Free Software Foundation, version 3.
**
** 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 Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
/**
* @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) {
$hint->addRow([
CSlaHelper::getPeriodTag((int) $sla['period'], $sla['sli']['periods'][$period_index]['period_from'],
$sla['sli']['periods'][$period_index]['period_to'], $sla['timezone']
),
CSlaHelper::getSloTag((float) $sla['slo']),