/usr/share/zabbix/adm.housekeeper.php is in zabbix-frontend-php 1:2.2.7+dfsg-2+deb8u3.
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 | <?php
/*
** Zabbix
** Copyright (C) 2001-2014 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'] = _('Configuration of housekeeping');
$page['file'] = 'adm.housekeeper.php';
$page['hist_arg'] = array();
require_once dirname(__FILE__).'/include/page_header.php';
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields = array(
'hk_events_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_events_trigger' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('Trigger event and alert data storage period')
),
'hk_events_internal' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('Internal event and alert data storage period')
),
'hk_events_discovery' =>array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('Network discovery event and alert data storage period')
),
'hk_events_autoreg' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('Auto-registration event and alert data storage period')
),
'hk_services_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_services' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('IT service data storage period')
),
'hk_audit_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_audit' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('Audit data storage period')
),
'hk_sessions_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_sessions' => array(T_ZBX_INT, O_OPT, null, BETWEEN(1, 99999), null,
_('User session data storage period')),
'hk_history_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_history_global' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_history' => array(T_ZBX_INT, O_OPT, null, BETWEEN(0, 99999), null,
_('History data storage period')
),
'hk_trends_mode' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_trends_global' => array(T_ZBX_INT, O_OPT, null, IN('0,1'), null),
'hk_trends' => array(T_ZBX_INT, O_OPT, null, BETWEEN(0, 99999), null,
_('Trend data storage period')
),
'save' => array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'form_refresh' => array(T_ZBX_INT, O_OPT, null, null, null)
);
check_fields($fields);
$data['config'] = select_config();
/*
* Actions
*/
if (isset($_REQUEST['save'])) {
DBstart();
$configs = array(
'hk_events_mode' => getRequest('hk_events_mode', 0),
'hk_events_trigger' => getRequest('hk_events_trigger'),
'hk_events_internal' => getRequest('hk_events_internal'),
'hk_events_discovery' => getRequest('hk_events_discovery'),
'hk_events_autoreg' => getRequest('hk_events_autoreg'),
'hk_services_mode' => getRequest('hk_services_mode', 0),
'hk_services' => getRequest('hk_services'),
'hk_audit_mode' => getRequest('hk_audit_mode', 0),
'hk_audit' => getRequest('hk_audit'),
'hk_sessions_mode' => getRequest('hk_sessions_mode', 0),
'hk_sessions' => getRequest('hk_sessions'),
'hk_history_mode' => getRequest('hk_history_mode', 0),
'hk_history_global' => getRequest('hk_history_global', 0),
'hk_history' => getRequest('hk_history'),
'hk_trends_mode' => getRequest('hk_trends_mode', 0),
'hk_trends_global' => getRequest('hk_trends_global', 0),
'hk_trends' => getRequest('hk_trends')
);
$result = update_config($configs);
show_messages($result, _('Configuration updated'), _('Cannot update configuration'));
if ($result) {
$msg = array();
$msg[] = _s('Trigger event and alert data storage period (in days) "%1$s".', getRequest('hk_events_trigger'));
$msg[] = _s('Internal event and alert data storage period (in days) "%1$s".', getRequest('hk_events_internal'));
$msg[] = _s('Network discovery event and alert data storage period (in days) "%1$s".', getRequest('hk_events_discovery'));
$msg[] = _s('Auto-registration event and alert data storage period (in days) "%1$s".', getRequest('hk_events_autoreg'));
$msg[] = _s('IT service data storage period (in days) "%1$s".', getRequest('hk_services'));
$msg[] = _s('Audit data storage period (in days) "%1$s".', getRequest('hk_audit'));
$msg[] = _s('User session data storage period (in days) "%1$s".', getRequest('hk_sessions'));
$msg[] = _s('History data storage period (in days) "%1$s".', getRequest('hk_history'));
$msg[] = _s('Trend data storage period (in days) "%1$s".', getRequest('hk_trends'));
add_audit(AUDIT_ACTION_UPDATE, AUDIT_RESOURCE_ZABBIX_CONFIG, implode('; ', $msg));
}
DBend($result);
}
$form = new CForm();
$form->cleanItems();
$cmbConf = new CComboBox('configDropDown', 'adm.housekeeper.php', 'redirect(this.options[this.selectedIndex].value);');
$cmbConf->addItems(array(
'adm.gui.php' => _('GUI'),
'adm.housekeeper.php' => _('Housekeeping'),
'adm.images.php' => _('Images'),
'adm.iconmapping.php' => _('Icon mapping'),
'adm.regexps.php' => _('Regular expressions'),
'adm.macros.php' => _('Macros'),
'adm.valuemapping.php' => _('Value mapping'),
'adm.workingtime.php' => _('Working time'),
'adm.triggerseverities.php' => _('Trigger severities'),
'adm.triggerdisplayoptions.php' => _('Trigger displaying options'),
'adm.other.php' => _('Other')
));
$form->addItem($cmbConf);
$cnf_wdgt = new CWidget(null, 'hk');
$cnf_wdgt->addPageHeader(_('CONFIGURATION OF HOUSEKEEPING'), $form);
$data['form_refresh'] = getRequest('form_refresh', 0);
if ($data['form_refresh']) {
$data['config']['hk_events_mode'] = getRequest('hk_events_mode');
$data['config']['hk_events_trigger'] = isset($_REQUEST['hk_events_trigger'])
? getRequest('hk_events_trigger') : $data['config']['hk_events_trigger'];
$data['config']['hk_events_internal'] = isset($_REQUEST['hk_events_internal'])
? getRequest('hk_events_internal') : $data['config']['hk_events_internal'];
$data['config']['hk_events_discovery'] = isset($_REQUEST['hk_events_discovery'])
? getRequest('hk_events_discovery') : $data['config']['hk_events_discovery'];
$data['config']['hk_events_autoreg'] = isset($_REQUEST['hk_events_autoreg'])
? getRequest('hk_events_autoreg') : $data['config']['hk_events_autoreg'];
$data['config']['hk_services_mode'] = getRequest('hk_services_mode');
$data['config']['hk_services'] = isset($_REQUEST['hk_services'])
? getRequest('hk_services') : $data['config']['hk_services'];
$data['config']['hk_audit_mode'] = getRequest('hk_audit_mode');
$data['config']['hk_audit'] = isset($_REQUEST['hk_audit'])
? getRequest('hk_audit') : $data['config']['hk_audit'];
$data['config']['hk_sessions_mode'] = getRequest('hk_sessions_mode');
$data['config']['hk_sessions'] = isset($_REQUEST['hk_sessions'])
? getRequest('hk_sessions') : $data['config']['hk_sessions'];
$data['config']['hk_history_mode'] = getRequest('hk_history_mode');
$data['config']['hk_history_global'] = getRequest('hk_history_global');
$data['config']['hk_history'] = isset($_REQUEST['hk_history'])
? getRequest('hk_history') : $data['config']['hk_history'];
$data['config']['hk_trends_mode'] = getRequest('hk_trends_mode');
$data['config']['hk_trends_global'] = getRequest('hk_trends_global');
$data['config']['hk_trends'] = isset($_REQUEST['hk_trends'])
? getRequest('hk_trends') : $data['config']['hk_trends'];
}
else {
$data['config'] = select_config(false);
}
$houseKeeperForm = new CView('administration.general.housekeeper.edit', $data);
$cnf_wdgt->addItem($houseKeeperForm->render());
$cnf_wdgt->show();
require_once dirname(__FILE__).'/include/page_footer.php';
|