/usr/share/zabbix/report4.php is in zabbix-frontend-php 1:2.4.7+dfsg-2ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | <?php
/*
** Zabbix
** Copyright (C) 2001-2015 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.
**/
require_once dirname(__FILE__).'/include/config.inc.php';
$page['title'] = _('Notification report');
$page['file'] = 'report4.php';
$page['hist_arg'] = array('media_type','period','year');
require_once dirname(__FILE__).'/include/page_header.php';
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields = array(
'year' => array(T_ZBX_INT, O_OPT, P_SYS|P_NZERO, null, null),
'period' => array(T_ZBX_STR, O_OPT, P_SYS|P_NZERO, IN('"daily","weekly","monthly","yearly"'), null),
'media_type' => array(T_ZBX_INT, O_OPT, P_SYS, DB_ID, null)
);
check_fields($fields);
if (getRequest('media_type')) {
$mediaTypeData = API::MediaType()->get(array(
'mediatypeids' => array($_REQUEST['media_type']),
'countOutput' => true
));
if (!$mediaTypeData) {
access_deny ();
}
}
$year = getRequest('year', intval(date('Y')));
$period = getRequest('period', 'weekly');
$media_type = getRequest('media_type', 0);
$_REQUEST['year'] = $year;
$_REQUEST['period'] = $period;
$_REQUEST['media_type'] = $media_type;
$currentYear = date('Y');
// fetch media types
$media_types = array();
$db_media_types = DBselect('SELECT mt.* FROM media_type mt ORDER BY mt.description');
while ($media_type_data = DBfetch($db_media_types)) {
$media_types[$media_type_data['mediatypeid']] = $media_type_data['description'];
}
// if no media types were defined, we have nothing to show
if (zbx_empty($media_types)) {
show_table_header(_('Notifications'));
$table = new CTableInfo(_('No notifications found.'));
$table->show();
}
else {
$table = new CTableInfo();
$table->makeVerticalRotation();
// fetch the year of the first alert
if (($firstAlert = DBfetch(DBselect('SELECT MIN(a.clock) AS clock FROM alerts a'))) && $firstAlert['clock']) {
$minYear = date('Y', $firstAlert['clock']);
}
// if no alerts exist, use the current year
else {
$minYear = date('Y');
}
$form = new CForm();
$form->setMethod('get');
$form->addItem(SPACE._('Media type').SPACE);
$cmbMedia = new CComboBox('media_type', $media_type, 'submit();');
$cmbMedia->addItem(0, _('all'));
foreach ($media_types as $media_type_id => $media_type_description) {
$cmbMedia->addItem($media_type_id, $media_type_description);
// we won't need other media types in the future, if only one was selected
if ($media_type > 0 && $media_type != $media_type_id) {
unset($media_types[$media_type_id]);
}
}
$form->addItem($cmbMedia);
$form->addItem(SPACE._('Period').SPACE);
$cmbPeriod = new CComboBox('period', $period, 'submit();');
$cmbPeriod->addItem('daily', _('Daily'));
$cmbPeriod->addItem('weekly', _('Weekly'));
$cmbPeriod->addItem('monthly', _('Monthly'));
$cmbPeriod->addItem('yearly', _('Yearly'));
$form->addItem($cmbPeriod);
if ($period != 'yearly') {
$form->addItem(SPACE._('Year').SPACE);
$cmbYear = new CComboBox('year', $year, 'submit();');
for ($y = $minYear; $y <= date('Y'); $y++) {
$cmbYear->addItem($y, $y);
}
$form->addItem($cmbYear);
}
show_table_header(_('Notifications'), $form);
$header = array();
$db_users = DBselect('SELECT u.* FROM users u ORDER BY u.alias,u.userid');
while ($user_data = DBfetch($db_users)) {
$header[] = new CCol($user_data['alias'], 'vertical_rotation');
$users[$user_data['userid']] = $user_data['alias'];
}
$intervals = array();
switch ($period) {
case 'yearly':
$minTime = mktime(0, 0, 0, 1, 1, $minYear);
$dateFormat = _x('Y', DATE_FORMAT_CONTEXT);
array_unshift($header, new CCol(_('Year'), 'center'));
for ($i = $minYear; $i <= date('Y'); $i++) {
$intervals[mktime(0, 0, 0, 1, 1, $i)] = mktime(0, 0, 0, 1, 1, $i + 1);
}
break;
case 'monthly':
$minTime = mktime(0, 0, 0, 1, 1, $year);
$dateFormat = _x('F', DATE_FORMAT_CONTEXT);
array_unshift($header, new CCol(_('Month'),'center'));
$max = ($year == $currentYear) ? date('n') : 12;
for ($i = 1; $i <= $max; $i++) {
$intervals[mktime(0, 0, 0, $i, 1, $year)] = mktime(0, 0, 0, $i + 1, 1, $year);
}
break;
case 'daily':
$minTime = mktime(0, 0, 0, 1, 1, $year);
$dateFormat = DATE_FORMAT;
array_unshift($header, new CCol(_('Day'),'center'));
$max = ($year == $currentYear) ? date('z') : DAY_IN_YEAR;
for ($i = 1; $i <= $max; $i++) {
$intervals[mktime(0, 0, 0, 1, $i, $year)] = mktime(0, 0, 0, 1, $i + 1, $year);
}
break;
case 'weekly':
$time = mktime(0, 0, 0, 1, 1, $year);
$wd = date('w', $time);
$wd = ($wd == 0) ? 6 : $wd - 1;
$minTime = $time - $wd * SEC_PER_DAY;
$dateFormat = DATE_TIME_FORMAT;
array_unshift($header, new CCol(_('From'), 'center'), new CCol(_('Till'), 'center'));
$max = ($year == $currentYear) ? date('W') - 1 : 52;
for ($i = 0; $i <= $max; $i++) {
$intervals[strtotime('+'.$i.' week', $minTime)] = strtotime('+'.($i + 1).' week', $minTime);
}
break;
}
// time till
$maxTime = ($year == $currentYear) ? time() : mktime(0, 0, 0, 1, 1, $year + 1);
// fetch alerts
$alerts = array();
foreach (eventSourceObjects() as $sourceObject) {
$alerts = array_merge($alerts, API::Alert()->get(array(
'output' => array('mediatypeid', 'userid', 'clock'),
'eventsource' => $sourceObject['source'],
'eventobject' => $sourceObject['object'],
'mediatypeids' => (getRequest('media_type')) ? getRequest('media_type') : null,
'time_from' => $minTime,
'time_till' => $maxTime
)));
}
// sort alerts in chronological order so we could easily iterate through them later
CArrayHelper::sort($alerts, array('clock'));
$table->setHeader($header, 'vertical_header');
foreach ($intervals as $from => $till) {
// interval start
$row = array(zbx_date2str($dateFormat, $from));
// interval end, displayed only for week intervals
if ($period == 'weekly') {
$row[] = zbx_date2str($dateFormat, min($till, time()));
}
// counting alert count for each user and media type
$summary = array();
foreach ($users as $userid => $alias) {
$summary[$userid] = array();
$summary[$userid]['total'] = 0;
$summary[$userid]['medias'] = array();
foreach ($media_types as $media_type_nr => $mt) {
$summary[$userid]['medias'][$media_type_nr] = 0;
}
}
// loop through alerts until we reach an alert from the next interval
while ($alert = current($alerts)) {
if ($alert['clock'] >= $till) {
break;
}
if (isset($summary[$alert['userid']])) {
$summary[$alert['userid']]['total']++;
if (isset($summary[$alert['userid']]['medias'][$alert['mediatypeid']])) {
$summary[$alert['userid']]['medias'][$alert['mediatypeid']]++;
}
else {
$summary[$alert['userid']]['medias'][$alert['mediatypeid']] = 1;
}
}
next($alerts);
}
foreach ($summary as $s) {
array_push($row, array($s['total'], ($media_type == 0) ? SPACE.'('.implode('/', $s['medias']).')' : ''));
}
$table->addRow($row);
}
$table->show();
if ($media_type == 0) {
echo BR();
$links = array();
foreach ($media_types as $id => $description) {
$links[] = new CLink($description, 'media_types.php?form=edit&mediatypeid='.$id);
$links[] = SPACE.'/'.SPACE;
}
array_pop($links);
$linksDiv = new CDiv(array(SPACE._('all').SPACE.'('.SPACE, $links, SPACE.')'));
$linksDiv->show();
}
}
require_once dirname(__FILE__).'/include/page_footer.php';
|