You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zabbix/ui/app/views/reports.toptriggers.list.php

164 lines
4.7 KiB

1 year ago
<?php declare(strict_types = 0);
/*
** 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.
**/
/**
* @var CView $this
* @var array $data
*/
$this->addJsFile('gtlc.js');
$this->addJsFile('class.calendar.js');
$this->addJsFile('class.tagfilteritem.js');
$this->includeJsFile('reports.toptriggers.list.js.php');
$filter = (new CFilter())
->addVar('action', 'toptriggers.list')
->setResetUrl(
(new CUrl('zabbix.php'))->setArgument('action', 'toptriggers.list')
)
->setProfile($data['filter']['timeline']['profileIdx'])
->setActiveTab($data['filter']['active_tab'])
->addTimeSelector($data['filter']['timeline']['from'], $data['filter']['timeline']['to'], true,
'web.toptriggers.filter', ZBX_DATE_TIME
)
->addFilterTab(_('Filter'), [
(new CFormGrid())
->addClass(CFormGrid::ZBX_STYLE_FORM_GRID_LABEL_WIDTH_TRUE)
->addItem([
new CLabel(_('Host groups'), 'filter_groupids__ms'),
new CFormField(
(new CMultiSelect([
'name' => 'filter_groupids[]',
'object_name' => 'hostGroup',
'data' => $data['filter']['groups'],
'popup' => [
'parameters' => [
'srctbl' => 'host_groups',
'srcfld1' => 'groupid',
'dstfrm' => 'zbx_filter',
'dstfld1' => 'filter_groupids_',
'with_hosts' => true,
'enrich_parent_groups' => true
]
]
]))->setWidth(ZBX_TEXTAREA_FILTER_STANDARD_WIDTH)
)
])
->addItem([
new CLabel(_('Hosts'), 'filter_hostids__ms'),
new CFormField(
(new CMultiSelect([
'name' => 'filter_hostids[]',
'object_name' => 'hosts',
'data' => $data['filter']['hosts'],
'popup' => [
'filter_preselect' => [
'id' => 'filter_groupids_',
'submit_as' => 'groupid'
],
'parameters' => [
'srctbl' => 'hosts',
'srcfld1' => 'hostid',
'dstfrm' => 'zbx_filter',
'dstfld1' => 'filter_hostids_'
]
]
]))->setWidth(ZBX_TEXTAREA_FILTER_STANDARD_WIDTH)
)
])
->addItem([
new CLabel(_('Problem'), 'filter_problem'),
new CFormField(
(new CTextBox('filter_problem', $data['filter']['problem']))
->setWidth(ZBX_TEXTAREA_FILTER_STANDARD_WIDTH)
)
])
->addItem([
new CLabel(_('Severity')),
new CFormField(
(new CCheckBoxList('filter_severities'))
->setOptions(CSeverityHelper::getSeverities())
->setChecked($data['filter']['severities'])
->setColumns(3)
->setVertical()
)
]),
(new CFormGrid())
->addClass(CFormGrid::ZBX_STYLE_FORM_GRID_LABEL_WIDTH_TRUE)
->addItem([
new CLabel(_('Problem tags')),
new CFormField([
CTagFilterFieldHelper::getTagFilterField([
'evaltype' => $data['filter']['evaltype'],
'tags' => $data['filter']['tags'] ?: [
['tag' => '', 'operator' => TAG_OPERATOR_LIKE, 'value' => '']
]
])
])
])
]);
$table = (new CTableInfo())->setHeader([_('Host'), _('Trigger'), _('Severity'), _('Number of problems')]);
foreach ($data['triggers'] as $triggerid => $trigger) {
$hosts = [];
foreach ($trigger['hosts'] as $host) {
$hosts[] = (new CLinkAction($host['name']))
->addClass(ZBX_STYLE_WORDBREAK)
->addClass($host['status'] == HOST_STATUS_NOT_MONITORED ? ZBX_STYLE_RED : null)
->setMenuPopup(CMenuPopupHelper::getHost($host['hostid']));
$hosts[] = ', ';
}
array_pop($hosts);
$table->addRow([
$hosts,
(new CLinkAction($trigger['description']))->setMenuPopup(
CMenuPopupHelper::getTrigger([
'triggerid' => $trigger['triggerid'],
'backurl' => (new CUrl('zabbix.php'))
->setArgument('action', 'toptriggers.list')
->getUrl()
])
),
CSeverityHelper::makeSeverityCell((int) $trigger['priority']),
$trigger['problem_count']
]);
}
(new CHtmlPage())
->setTitle(_('Top 100 triggers'))
->setDocUrl(CDocHelper::getUrl(CDocHelper::REPORTS_TOPTRIGGERS))
->addItem($filter)
->addItem($table)
->show();
(new CScriptTag('
view.init('.json_encode([
'timeline' => $data['filter']['timeline']
]).');
'))
->setOnDocumentReady()
->show();