4 Star 7 Fork 1

Gitee 极速下载/Cacti

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/Cacti/cacti
克隆/下载
pollers.php 39.28 KB
一键复制 编辑 原始数据 按行查看 历史
TheWitness 提交于 2024-02-03 13:52 . QA: Update Copyright to 2024
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
<?php
/*
+-------------------------------------------------------------------------+
| Copyright (C) 2004-2024 The Cacti Group |
| |
| 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. |
+-------------------------------------------------------------------------+
| Cacti: The Complete RRDtool-based Graphing Solution |
+-------------------------------------------------------------------------+
| This code is designed, written, and maintained by the Cacti Group. See |
| about.php and/or the AUTHORS file for specific developer information. |
+-------------------------------------------------------------------------+
| http://www.cacti.net/ |
+-------------------------------------------------------------------------+
*/
require('./include/auth.php');
require_once(CACTI_PATH_LIBRARY . '/poller.php');
/* performing a full sync can take a lot of memory and time */
ini_set('memory_limit', '-1');
ini_set('max_execution_time', '900');
$actions = array(
POLLER_DISABLE => __('Disable'),
POLLER_ENABLE => __('Enable'),
POLLER_CLEAR_STATS => __('Clear Statistics'),
);
if ($config['poller_id'] == 1) {
$actions += array(POLLER_RESYNC => __('Full Sync'));
}
$poller_status = array(
POLLER_STATUS_NEW => '<div class="deviceUnknown">' . __('New/Idle') . '</div>',
POLLER_STATUS_RUNNING => '<div class="deviceUp">' . __('Running') . '</div>',
POLLER_STATUS_IDLE => '<div class="deviceRecovering">' . __('Idle') . '</div>',
POLLER_STATUS_DOWN => '<div class="deviceDown">' . __('Down') . '</div>',
POLLER_STATUS_DISABLED => '<div class="deviceDisabled">' . __('Disabled') . '</div>',
POLLER_STATUS_RECOVERING => '<div class="deviceDown">' . __('Recovering') . '</div>',
POLLER_STATUS_HEARTBEAT => '<div class="deviceDown">' . __('Heartbeat') . '</div>',
);
$logfile_verbosity = array_merge(array(-1 => __('Use Cacti Log Level')), $logfile_verbosity);
/* file: pollers.php, action: edit */
$fields_poller_edit = array(
'spacer0' => array(
'method' => 'spacer',
'friendly_name' => __('Data Collector Information'),
),
'name' => array(
'method' => 'textbox',
'friendly_name' => __('Name'),
'description' => __('The primary name for this Data Collector.'),
'value' => '|arg1:name|',
'size' => '50',
'default' => __('New Data Collector'),
'max_length' => '100'
),
'hostname' => array(
'method' => 'textbox',
'friendly_name' => __('Data Collector Hostname'),
'description' => __('The hostname for Data Collector. It may have to be a Fully Qualified Domain name for the remote Pollers to contact it for activities such as re-indexing, Real-time graphing, etc.'),
'value' => '|arg1:hostname|',
'size' => '50',
'default' => '',
'max_length' => '100'
),
'log_level' => array(
'method' => 'drop_array',
'friendly_name' => __('Custom Log Level'),
'description' => __('In Cases where you need to perform debugging for a single Data Collector Only, you can change it\'s log level here.'),
'value' => '|arg1:log_level|',
'default' => '-1',
'array' => $logfile_verbosity,
),
'timezone' => array(
'method' => 'drop_callback',
'friendly_name' => __('TimeZone'),
'description' => __('The TimeZone for the Data Collector.'),
'sql' => 'SELECT Name AS id, Name AS name FROM mysql.time_zone_name ORDER BY name',
'action' => 'ajax_tz',
'id' => '|arg1:timezone|',
'value' => '|arg1:timezone|'
),
'notes' => array(
'method' => 'textarea',
'friendly_name' => __('Notes'),
'description' => __('Notes for this Data Collectors Database.'),
'value' => '|arg1:notes|',
'textarea_rows' => 4,
'textarea_cols' => 50
),
'spacer_collection' => array(
'method' => 'spacer',
'friendly_name' => __('Collection Settings'),
),
'processes' => array(
'method' => 'textbox',
'friendly_name' => __('Processes'),
'description' => __('The number of Data Collector processes to use to spawn.'),
'value' => '|arg1:processes|',
'size' => '10',
'default' => read_config_option('concurrent_processes'),
'max_length' => '4'
),
'threads' => array(
'method' => 'textbox',
'friendly_name' => __('Threads'),
'description' => __('The number of Spine Threads to use per Data Collector process.'),
'value' => '|arg1:threads|',
'size' => '10',
'default' => read_config_option('max_threads'),
'max_length' => '4'
),
'sync_interval' => array(
'method' => 'drop_array',
'friendly_name' => __('Sync Interval'),
'description' => __('The polling sync interval in use. This setting will affect how often this poller is checked and updated.'),
'value' => '|arg1:sync_interval|',
'default' => read_config_option('poller_sync_interval'),
'array' => $poller_sync_intervals,
),
'spacer_remotedb' => array(
'method' => 'spacer',
'friendly_name' => __('Remote Database Connection'),
),
'dbhost' => array(
'method' => 'textbox',
'friendly_name' => __('Hostname'),
'description' => __('The hostname for the remote database server.'),
'value' => '|arg1:dbhost|',
'size' => '50',
'default' => '',
'max_length' => '100'
),
'dbdefault' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database Name'),
'description' => __('The name of the remote database.'),
'value' => '|arg1:dbdefault|',
'size' => '20',
'default' => $database_default,
'max_length' => '20'
),
'dbuser' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database User'),
'description' => __('The user name to use to connect to the remote database.'),
'value' => '|arg1:dbuser|',
'size' => '20',
'default' => $database_username,
'max_length' => '20'
),
'dbpass' => array(
'method' => 'textbox_password',
'friendly_name' => __('Remote Database Password'),
'description' => __('The user password to use to connect to the remote database.'),
'value' => '|arg1:dbpass|',
'size' => '40',
'default' => $database_password,
'max_length' => '64'
),
'dbport' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database Port'),
'description' => __('The TCP port to use to connect to the remote database.'),
'value' => '|arg1:dbport|',
'size' => '5',
'default' => $database_port,
'max_length' => '5'
),
'dbretries' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database Retries'),
'description' => __('The number of times to attempt to retry to connect to the remote database.'),
'value' => '|arg1:dbretries|',
'size' => '5',
'default' => $database_retries,
'max_length' => '5'
),
'dbssl' => array(
'method' => 'checkbox',
'friendly_name' => __('Remote Database SSL'),
'description' => __('If the remote database uses SSL to connect, check the checkbox below.'),
'value' => '|arg1:dbssl|',
'default' => $database_ssl ? 'on' : ''
),
'dbsslkey' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database SSL Key'),
'description' => __('The file holding the SSL Key to use to connect to the remote database.'),
'value' => '|arg1:dbsslkey|',
'size' => '50',
'default' => $database_ssl_key,
'max_length' => '255'
),
'dbsslcert' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database SSL Certificate'),
'description' => __('The file holding the SSL Certificate to use to connect to the remote database.'),
'value' => '|arg1:dbsslcert|',
'size' => '50',
'default' => $database_ssl_cert,
'max_length' => '255'
),
'dbsslca' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database SSL Authority'),
'description' => __('The file holding the SSL Certificate Authority to use to connect to the remote database. This is an optional parameter that can be required by the database provider if they have started SSL using the --ssl-mode=VERIFY_CA option.'),
'value' => '|arg1:dbsslca|',
'size' => '50',
'default' => $database_ssl_ca,
'max_length' => '255'
),
'dbsslcapath' => array(
'method' => 'textbox',
'friendly_name' => __('Remote Database SSL Authorities directory'),
'description' => __('The file path to the directory that contains the trusted SSL Certificate Authority certificates. This is an optional parameter that can used instead of giving the path to an individual Certificate Authority file. This parameter can be required by the database provider if they have started SSL using the --ssl-mode=VERIFY_CA option.'),
'value' => '|arg1:dbsslcapath|',
'size' => '50',
'default' => $database_ssl_capath,
'max_length' => '255'
),
'dbsslverifyservercert' => array(
'method' => 'checkbox',
'friendly_name' => __('Remote Database SSL'),
'description' => __("Provides a way to disable verification of the server's SSL certificate Common Name against the server's hostname when connecting. This verification is enabled by default."),
'value' => '|arg1:dbsslverifyservercert|',
'default' => $database_ssl_verify_server_cert ? 'on' : ''
),
'id' => array(
'method' => 'hidden',
'value' => '|arg1:id|',
),
'save_component_poller' => array(
'method' => 'hidden',
'value' => '1'
)
);
/* set default action */
set_default_action();
switch (get_request_var('action')) {
case 'save':
form_save();
break;
case 'actions':
form_actions();
break;
case 'ajax_tz':
print json_encode(db_fetch_assoc_prepared(
'SELECT Name AS label, Name AS `value`
FROM mysql.time_zone_name
WHERE Name LIKE ?
ORDER BY Name
LIMIT ' . read_config_option('autocomplete_rows'),
array('%' . get_nfilter_request_var('term') . '%')
));
break;
case 'ping':
test_database_connection();
break;
case 'edit':
top_header();
poller_edit();
bottom_footer();
break;
default:
top_header();
pollers();
bottom_footer();
break;
}
function form_save() {
if (isset_request_var('save_component_poller')) {
// Common data
$save['id'] = get_filter_request_var('id');
$save['name'] = form_input_validate(get_nfilter_request_var('name'), 'name', '', false, 3);
$save['hostname'] = form_input_validate(get_nfilter_request_var('hostname'), 'hostname', '', false, 3);
$save['log_level'] = form_input_validate(get_nfilter_request_var('log_level'), 'log_level', '', false, 3);
$save['timezone'] = form_input_validate(get_nfilter_request_var('timezone'), 'timezone', '', false, 3);
$save['notes'] = form_input_validate(get_nfilter_request_var('notes'), 'notes', '', true, 3);
// Process settings
$save['processes'] = form_input_validate(get_nfilter_request_var('processes'), 'processes', '^[0-9]+$', false, 3);
$save['threads'] = form_input_validate(get_nfilter_request_var('threads'), 'threads', '^[0-9]+$', false, 3);
if ($save['id'] != 1) {
$save['sync_interval'] = form_input_validate(get_nfilter_request_var('sync_interval'), 'sync_interval', '^[0-9]+$', false, 3);
// Database settings
$save['dbdefault'] = form_input_validate(get_nfilter_request_var('dbdefault'), 'dbdefault', '', true, 3);
$save['dbhost'] = form_input_validate(get_nfilter_request_var('dbhost'), 'dbhost', '', true, 3);
$save['dbuser'] = form_input_validate(get_nfilter_request_var('dbuser'), 'dbuser', '', true, 3);
$save['dbpass'] = form_input_validate(get_nfilter_request_var('dbpass'), 'dbpass', '', true, 3);
$save['dbport'] = form_input_validate(get_nfilter_request_var('dbport'), 'dbport', '^[0-9]+$', true, 3);
$save['dbretries'] = form_input_validate(get_nfilter_request_var('dbretries'), 'dbretries', '^[0-9]+$', true, 3);
$save['dbssl'] = isset_request_var('dbssl') ? 'on' : '';
$save['dbsslkey'] = form_input_validate(get_nfilter_request_var('dbsslkey'), 'dbsslkey', '', true, 3);
$save['dbsslcert'] = form_input_validate(get_nfilter_request_var('dbsslcert'), 'dbsslcert', '', true, 3);
$save['dbsslca'] = form_input_validate(get_nfilter_request_var('dbsslca'), 'dbsslca', '', true, 3);
$save['dbsslcapath'] = form_input_validate(get_nfilter_request_var('dbsslcapath'), 'dbsslcapath', '', true, 3);
$save['dbsslverifyservercert'] = isset_request_var('dbsslverifyservercert') ? 'on' : '';
}
// Check for duplicate hostname
$error = false;
if (poller_check_duplicate_poller_id($save['id'], $save['hostname'], 'hostname')) {
raise_message('dupe_hostname', __esc('You have already used this hostname \'%s\'. Please enter a non-duplicate hostname.', $save['hostname']), MESSAGE_LEVEL_ERROR);
$error = true;
}
if (isset($save['dbhost'])) {
if (poller_check_duplicate_poller_id($save['id'], $save['dbhost'], 'dbhost')) {
raise_message('dupe_dbhost', __esc('You have already used this database hostname \'%s\'. Please enter a non-duplicate database hostname.', $save['hostname']), MESSAGE_LEVEL_ERROR);
$error = true;
}
}
if (isset($save['dbhost']) && $save['dbhost'] == 'localhost' && $save['id'] > 1) {
raise_message('poller_dbhost');
} elseif ($save['id'] > 1 && poller_host_duplicate($save['id'], $save['dbhost'])) {
raise_message('poller_nodupe');
} elseif (!is_error_message() && $error == false) {
$poller_id = sql_save($save, 'poller');
if ($poller_id) {
raise_message(1);
} else {
raise_message(2);
}
}
header('Location: pollers.php?action=edit&id=' . (empty($poller_id) ? get_nfilter_request_var('id') : $poller_id));
}
}
function poller_check_duplicate_poller_id($poller_id, $hostname, $column) {
$ip_addresses = array();
$ip_hostnames = array();
if (is_ipaddress($hostname)) {
$address = @gethostbyaddr($hostname);
if ($address != $hostname) {
$ip_hostnames[$address] = $address;
} else {
$ip_addresses[$address] = $address;
}
$ip_addresses[$hostname] = $hostname;
} elseif (strpos($hostname, '.') !== false) {
$addresses = @dns_get_record($hostname);
$ip = @gethostbyname($hostname);
if ($ip != $hostname) {
$ip_addresses[$ip] = $ip;
}
$ip_hostnames[$hostname] = $hostname;
if (cacti_sizeof($addresses)) {
foreach ($addresses as $address) {
if (isset($address['target'])) {
$ip_hostnames[$address['host']] = $address['host'];
}
if (isset($address['host'])) {
$ip_hostnames[$address['host']] = $address['host'];
}
if (isset($address['ip'])) {
$ip_addresses[$address['ip']] = $address['ip'];
}
}
}
} else {
$ip_hostname[$hostname] = $hostname;
$address = @gethostbyname($hostname);
if ($address != $hostname) {
$ip_addresses[$address] = $address;
}
}
$sql_where1 = '';
if (cacti_sizeof($ip_addresses)) {
$sql_where1 = "$column IN ('" . implode("','", $ip_addresses) . "')";
}
$sql_where2 = '';
if (cacti_sizeof($ip_hostnames)) {
foreach ($ip_hostnames as $host) {
$parts = explode('.', $host);
$sql_where2 .= ($sql_where2 != '' ? ' OR ' : ' (') .
"($column = " . db_qstr($parts[0]) .
" OR $column = " . db_qstr($host) . ')';
}
$sql_where2 .= ')';
}
if ($sql_where1 != '' || $sql_where2 != '') {
$sql_where = ' AND (' . $sql_where1 . ($sql_where1 != '' && $sql_where2 != '' ? ' OR ' : '') . $sql_where2 . ')';
} else {
$sql_where = '';
}
$duplicate = db_fetch_cell_prepared(
"SELECT id
FROM poller
WHERE id != ?
$sql_where",
array($poller_id)
);
if (empty($duplicate)) {
return false;
} else {
return true;
}
}
function poller_host_duplicate($poller_id, $host) {
if ($host == 'localhost') {
return true;
} else {
return db_fetch_cell_prepared(
'SELECT COUNT(*)
FROM poller
WHERE dbhost LIKE ?
AND id != ?',
array($host . '%', $poller_id));
}
}
function form_actions() {
global $config, $actions;
/* ================= input validation ================= */
get_filter_request_var('drp_action', FILTER_VALIDATE_REGEXP, array('options' => array('regexp' => '/^([a-zA-Z0-9_]+)$/')));
/* ==================================================== */
/* if we are to save this form, instead of display it */
if (isset_request_var('selected_items')) {
$selected_items = sanitize_unserialize_selected_items(get_nfilter_request_var('selected_items'));
if ($selected_items != false) {
if (get_nfilter_request_var('drp_action') == POLLER_DELETE) { // delete
db_execute('DELETE FROM poller WHERE ' . array_to_sql_or($selected_items, 'id'));
db_execute('UPDATE host SET poller_id=1 WHERE deleted="" AND ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE automation_networks SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE automation_processes SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE poller_command SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE poller_item SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE poller_output_realtime SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
db_execute('UPDATE poller_time SET poller_id=1 WHERE ' . array_to_sql_or($selected_items, 'poller_id'));
cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' deleted by user ' . $_SESSION[SESS_USER_ID], false, 'WEBUI');
} elseif (get_request_var('drp_action') == POLLER_DISABLE) { // disable
db_execute('UPDATE poller SET disabled="on" WHERE ' . array_to_sql_or($selected_items, 'id'));
cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' disabled by user ' . $_SESSION[SESS_USER_ID], false, 'WEBUI');
} elseif (get_request_var('drp_action') == POLLER_ENABLE) { // enable
db_execute('UPDATE poller SET disabled="" WHERE ' . array_to_sql_or($selected_items, 'id'));
cacti_log('NOTE: The poller(s) with the id(s): ' . implode(',', $selected_items) . ' enabled by user ' . $_SESSION[SESS_USER_ID], false, 'WEBUI');
} elseif (get_request_var('drp_action') == POLLER_RESYNC) { // full sync
cacti_session_close();
$success = array();
$failed = array();
$ids = array();
foreach ($selected_items as $item) {
// Operation not allowed on the main poller
if ($item == 1) {
continue;
}
$ids[] = $item;
$poller = db_fetch_row_prepared(
'SELECT *
FROM poller
WHERE id = ?',
array($item)
);
if ($poller['dbhost'] == 'localhost') {
raise_message('poller_dbhost');
continue;
}
if ($item == 1) {
raise_message('poller_nomain');
continue;
} else {
if (replicate_out($item)) {
$success[] = $item;
db_execute_prepared(
'UPDATE poller
SET last_sync = NOW()
WHERE id = ?',
array($item)
);
} else {
$failed[] = $item;
}
}
}
cacti_session_start();
if (cacti_sizeof($failed)) {
cacti_log('WARNING: Some selected Remote Data Collectors in [' . implode(', ', $ids) . '] failed synchronization by user ' . get_username($_SESSION[SESS_USER_ID]) . ', Successful/Failed[' . cacti_sizeof($success) . '/' . cacti_sizeof($failed) . ']. See log for details.', false, 'WEBUI');
} else {
cacti_log('NOTE: All selected Remote Data Collectors in [' . implode(', ', $ids) . '] synchronized correctly by user ' . get_username($_SESSION[SESS_USER_ID]), false, 'WEBUI');
}
} elseif (get_request_var('drp_action') == '5') { // clear statistics
foreach ($selected_items as $item) {
db_execute_prepared(
'UPDATE poller
SET total_time = 0, max_time = 0, min_time = 9999999, avg_time = 0, total_polls = 0
WHERE id = ?',
array($item)
);
}
raise_message('poller_clear', __('Data Collector Statistics cleared.'), MESSAGE_LEVEL_INFO);
}
}
header('Location: pollers.php');
exit;
} else {
$ilist = '';
$iarray = array();
/* loop through each of the graphs selected on the previous page and get more info about them */
foreach ($_POST as $var => $val) {
if (preg_match('/^chk_([0-9]+)$/', $var, $matches)) {
/* ================= input validation ================= */
input_validate_input_number($matches[1], 'chk[1]');
/* ==================================================== */
$ilist .= '<li>' . html_escape(db_fetch_cell_prepared('SELECT name FROM poller WHERE id = ?', array($matches[1]))) . '</li>';
$iarray[] = $matches[1];
}
}
$form_data = array(
'general' => array(
'page' => 'pollers.php',
'actions' => $actions,
'optvar' => 'drp_action',
'item_array' => $iarray,
'item_list' => $ilist
),
'options' => array(
POLLER_DELETE => array(
'smessage' => __('Click \'Continue\' to Delete the following Data Collector.'),
'pmessage' => __('Click \'Continue\' to Delete the following Data Collectors.'),
'scont' => __('Delete Data Collector'),
'pcont' => __('Delete Data Collectors')
),
POLLER_DISABLE => array(
'smessage' => __('Click \'Continue\' to Disable the following Data Collector.'),
'pmessage' => __('Click \'Continue\' to Disable the following Data Collectors.'),
'scont' => __('Disable Data Collector'),
'pcont' => __('Disable Data Collectors')
),
POLLER_ENABLE => array(
'smessage' => __('Click \'Continue\' to Enable the following Data Collector.'),
'pmessage' => __('Click \'Continue\' to Enable the following Data Collectors.'),
'scont' => __('Enable Data Collector'),
'pcont' => __('Enable Data Collectors')
),
POLLER_RESYNC => array(
'smessage' => __('Click \'Continue\' to Synchronize the Remote Data Collector for Offline Operation.'),
'pmessage' => __('Click \'Continue\' to Synchronize the Remote Data Collectors for Offline Operation.'),
'scont' => __('Resync Data Collector'),
'pcont' => __('Resync Data Collectors')
),
POLLER_CLEAR_STATS => array(
'smessage' => __('Click \'Continue\' to Clear Statistics for the following Data Collector.'),
'pmessage' => __('Click \'Continue\' to Clear Statistics for following Data Collectors.'),
'scont' => __('Resync Data Collector'),
'pcont' => __('Resync Data Collectors')
)
)
);
form_continue_confirmation($form_data);
}
}
function poller_edit() {
global $fields_poller_edit;
/* ================= input validation ================= */
get_filter_request_var('id');
/* ==================================================== */
if (!isempty_request_var('id')) {
$poller = db_fetch_row_prepared(
'SELECT *
FROM poller
WHERE id = ?',
array(get_request_var('id'))
);
$header_label = __esc('Site [edit: %s]', $poller['name']);
} else {
$poller = array();
$header_label = __('Site [new]');
}
form_start('pollers.php', 'poller');
html_start_box($header_label, '100%', true, '3', 'center', '');
if (cacti_sizeof($poller)) {
if ($poller['id'] == 1) {
unset($fields_poller_edit['sync_interval']);
unset($fields_poller_edit['spacer_remotedb']);
unset($fields_poller_edit['dbdefault']);
unset($fields_poller_edit['dbhost']);
unset($fields_poller_edit['dbuser']);
unset($fields_poller_edit['dbpass']);
unset($fields_poller_edit['dbport']);
unset($fields_poller_edit['dbretries']);
unset($fields_poller_edit['dbssl']);
unset($fields_poller_edit['dbsslkey']);
unset($fields_poller_edit['dbsslcert']);
unset($fields_poller_edit['dbsslca']);
unset($fields_poller_edit['dbsslcapath']);
unset($fields_poller_edit['dbsslverifyservercert']);
$fields_poller_edit['log_level']['method'] = 'hidden';
}
if ($poller['timezone'] == '') {
$poller['timezone'] = ini_get('date.timezone');
}
}
draw_edit_form(
array(
'config' => array('no_form_tag' => true),
'fields' => inject_form_variables($fields_poller_edit, (isset($poller) ? $poller : array()))
)
);
$tip_text = __('Remote Data Collectors must be able to communicate to the Main Data Collector, and vice versa. Use this button to verify that the Main Data Collector can communicate to this Remote Data Collector.');
if (read_config_option('hide_form_description') == 'on') {
$tooltip = '<br><span class="formFieldDescription">' . $tip_text . '</span>';
} else {
$tooltip = '<div class="formTooltip">' . str_replace("\n", '', display_tooltip($tip_text)) . '</div>';
}
$row_html = '<div class="formRow odd"><div class="formColumnLeft"><div class="formFieldName">' . __('Test Database Connection') . $tooltip . '</div></div><div class="formColumnRight"><input type="button" class="ui-button ui-corner-all ui-widget" id="dbtest" value="' . __esc('Test Connection') . '"><span id="results"></span></div></div>';
$pt = read_config_option('poller_type');
if (isset($poller) && cacti_sizeof($poller)) {
if ($poller['id'] > 1) {
?>
<script type='text/javascript'>
pt = <?php print $pt; ?>;
function showHideRemoteDB() {
var hasSSL = $('#dbssl').is(':checked');
toggleFields({
dbsslkey: hasSSL,
dbsslcert: hasSSL,
dbsslca: hasSSL,
});
}
$(function() {
$('#row_dbsslca').after('<?php print $row_html; ?>');
$('#dbssl').click(function() {
showHideRemoteDB();
});
$('#dbtest').click(function(e) {
e.preventDefault();
ping_database();
});
showHideRemoteDB();
if (pt == 1) {
$('#row_threads').hide();
}
});
function ping_database() {
dbssl = $('#dbssl').is(':checked') ? 'on' : '';
dbsslverifyservercert = $('#dbsslverifyservercert').is(':checked') ? 'on' : '';
var options = {
url: 'pollers.php',
funcEnd: 'pingDatabaseFinalize',
handle: false
};
var data = {
__csrf_magic: csrfMagicToken,
action: 'ping',
dbdefault: $('#dbdefault').val(),
dbhost: $('#dbhost').val(),
dbuser: $('#dbuser').val(),
dbpass: $('#dbpass').val(),
dbport: $('#dbport').val(),
dbretries: $('#dbretries').val(),
dbssl: dbssl,
dbsslkey: $('#dbsslkey').val(),
dbsslcert: $('#dbsslcert').val(),
dbsslca: $('#dbsslca').val(),
dbsslcapath: $('#dbsslcapath').val(),
dbsslverifyservercert: dbsslverifyservercert
};
postUrl(options, data);
}
function pingDatabaseFinalize(options, data) {
$('#results').empty().show().html(data).fadeOut(5000);
}
</script>
<?php
} else {
?>
<script type='text/javascript'>
pt = <?php print $pt; ?>;
$(function() {
if (pt == 1) {
$('#row_threads').hide();
}
});
</script>
<?php
}
}
html_end_box(true, true);
$form_buttons = array(
array(
'id' => 'return',
'value' => __esc('Return'),
'url' => 'pollers.php',
'method' => 'return',
),
array(
'id' => 'save',
'value' => __esc('Save'),
'type' => 'submit'
)
);
form_save_buttons($form_buttons);
}
function test_database_connection($poller = array()) {
if (!cacti_sizeof($poller)) {
$poller['dbtype'] = 'mysql';
$fields = array(
'dbhost',
'dbuser',
'dbpass',
'dbdefault',
'dbport',
'dbretries',
'dbssl',
'dbsslkey',
'dbsslcert',
'dbsslca',
'dbsslcapath',
'dbsslverifyservercert'
);
foreach ($fields as $field) {
if ($field == 'dbssl') {
if (isset_request_var('dbssl') && get_nfilter_request_var('dbssl') == 'on') {
$poller['dbssl'] = 'on';
} else {
$poller['dbssl'] = '';
}
} elseif ($field == 'dbsslverifyservercert') {
if (isset_request_var('dbsslverifyservercert') && get_nfilter_request_var('dbsslverifyservercert') == 'on') {
$poller['dbsslverifyservercert'] = 'on';
} else {
$poller['dbsslverifyservercert'] = '';
}
} elseif (isset_request_var($field)) {
$poller[$field] = get_nfilter_request_var($field);
} else {
print 'ERROR: DB Connection Column ' . $field . ' Missing';
return false;
}
}
}
$connection = db_connect_real(
$poller['dbhost'],
$poller['dbuser'],
$poller['dbpass'],
$poller['dbdefault'],
$poller['dbtype'],
$poller['dbport'],
$poller['dbretries'],
$poller['dbssl'],
$poller['dbsslkey'],
$poller['dbsslcert'],
$poller['dbsslca'],
$poller['dbsslcapath'],
$poller['dbsslverifyservercert']
);
if (is_object($connection)) {
db_close($connection);
print '&nbsp;<i class="fas fa-check"></i>&nbsp;' . __('Connection Successful');
} else {
print '&nbsp;<i class="fas fa-times"></i>&nbsp;' . __('Connection Failed');
}
}
function pollers() {
global $actions, $poller_status, $item_rows;
/* ================= input validation and session storage ================= */
$filters = array(
'rows' => array(
'filter' => FILTER_VALIDATE_INT,
'pageset' => true,
'default' => '-1'
),
'page' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '1'
),
'refresh' => array(
'filter' => FILTER_VALIDATE_INT,
'default' => '20'
),
'filter' => array(
'filter' => FILTER_DEFAULT,
'pageset' => true,
'default' => ''
),
'sort_column' => array(
'filter' => FILTER_CALLBACK,
'default' => 'name',
'options' => array('options' => 'sanitize_search_string')
),
'sort_direction' => array(
'filter' => FILTER_CALLBACK,
'default' => 'ASC',
'options' => array('options' => 'sanitize_search_string')
)
);
validate_store_request_vars($filters, 'sess_pollers');
/* ================= input validation ================= */
$refresh['page'] = 'pollers.php';
$refresh['seconds'] = get_request_var('refresh');
$refresh['logout'] = 'false';
set_page_refresh($refresh);
if (get_request_var('rows') == '-1') {
$rows = read_config_option('num_rows_table');
} else {
$rows = get_request_var('rows');
}
html_start_box(__('Data Collectors'), '100%', '', '3', 'center', '');
?>
<tr class='even'>
<td>
<form id='form_poller' action='pollers.php'>
<table class='filterTable'>
<tr>
<td>
<?php print __('Search'); ?>
</td>
<td>
<input type='text' class='ui-state-default ui-corner-all' id='filter' size='25' value='<?php print html_escape_request_var('filter'); ?>'>
</td>
<td>
<?php print __('Collectors'); ?>
</td>
<td>
<select id='rows' onChange='applyFilter()'>
<option value='-1' <?php print(get_request_var('rows') == '-1' ? ' selected>' : '>') . __('Default'); ?></option>
<?php
if (cacti_sizeof($item_rows)) {
foreach ($item_rows as $key => $value) {
print "<option value='" . $key . "'";
if (get_request_var('rows') == $key) {
print ' selected';
}
print '>' . html_escape($value) . "</option>\n";
}
}
?>
</select>
</td>
<td>
<?php print __('Refresh'); ?>
</td>
<td>
<select id='refresh' onChange='applyFilter()'>
<?php
$frequency = array(
5 => __('%d Seconds', 5),
10 => __('%d Seconds', 10),
20 => __('%d Seconds', 20),
30 => __('%d Seconds', 30),
45 => __('%d Seconds', 45),
60 => __('%d Minute', 1),
120 => __('%d Minutes', 2),
300 => __('%d Minutes', 5)
);
foreach ($frequency as $r => $row) {
print "<option value='" . $r . "'" . (isset_request_var('refresh') && $r == get_request_var('refresh') ? ' selected' : '') . '>' . $row . '</option>';
}
?>
</select>
</td>
<td>
<span>
<input type='submit' class='ui-button ui-corner-all ui-widget' id='go' value='<?php print __esc('Go'); ?>' title='<?php print __esc('Set/Refresh Filters'); ?>'>
<input type='button' class='ui-button ui-corner-all ui-widget' id='clear' value='<?php print __esc('Clear'); ?>' title='<?php print __esc('Clear Filters'); ?>'>
</span>
</td>
</tr>
</table>
</form>
<script type='text/javascript'>
function applyFilter() {
strURL = 'pollers.php';
strURL += '?filter=' + $('#filter').val();
strURL += '&refresh=' + $('#refresh').val();
strURL += '&rows=' + $('#rows').val();
loadUrl({
url: strURL
})
}
function clearFilter() {
strURL = 'pollers.php?clear=1';
loadUrl({
url: strURL
})
}
$(function() {
$('#clear').click(function() {
clearFilter();
});
$('#form_poller').submit(function(event) {
event.preventDefault();
applyFilter();
});
});
</script>
</td>
</tr>
<?php
html_end_box();
/* form the 'where' clause for our main sql query */
if (get_request_var('filter') != '') {
$sql_where = 'WHERE name LIKE ' . db_qstr('%' . get_request_var('filter') . '%');
} else {
$sql_where = '';
}
$total_rows = db_fetch_cell("SELECT COUNT(*) FROM poller $sql_where");
$sql_order = get_order_string();
$sql_limit = ' LIMIT ' . ($rows * (get_request_var('page') - 1)) . ',' . $rows;
$pollers = db_fetch_assoc("SELECT poller.*, UNIX_TIMESTAMP() - UNIX_TIMESTAMP(poller.last_status) as heartbeat, devices AS hosts
FROM poller
$sql_where
$sql_order
$sql_limit");
$nav = html_nav_bar('pollers.php?filter=' . get_request_var('filter'), MAX_DISPLAY_PAGES, get_request_var('page'), $rows, $total_rows, 5, __('Pollers'), 'page', 'main');
form_start('pollers.php', 'chk');
print $nav;
html_start_box('', '100%', '', '3', 'center', '');
$display_text = array(
'name' => array(
'display' => __('Collector Name'),
'align' => 'left',
'sort' => 'ASC',
'tip' => __('The Name of this Data Collector.')
),
'id' => array(
'display' => __('ID'),
'align' => 'right',
'sort' => 'ASC',
'tip' => __('The unique id associated with this Data Collector.')
),
'poller.hostname' => array(
'display' => __('Hostname'),
'align' => 'right',
'sort' => 'ASC',
'tip' => __('The Hostname where the Data Collector is running.')
),
'status' => array(
'display' => __('Status'),
'align' => 'center',
'sort' => 'DESC',
'tip' => __('The Status of this Data Collector.')
),
'nosort0' => array(
'display' => __('Proc/Threads'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The Number of Poller Processes and Threads for this Data Collector.')
),
'total_time' => array(
'display' => __('Polling Time'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The last data collection time for this Data Collector.')
),
'nosort1' => array(
'display' => __('Avg/Max'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The Average and Maximum Collector timings for this Data Collector.')
),
'hosts' => array(
'display' => __('Devices'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The number of Devices associated with this Data Collector.')
),
'snmp' => array(
'display' => __('SNMP Gets'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The number of SNMP gets associated with this Collector.')
),
'script' => array(
'display' => __('Scripts'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The number of script calls associated with this Data Collector.')
),
'server' => array(
'display' => __('Servers'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The number of script server calls associated with this Data Collector.')
),
'last_update' => array(
'display' => __('Last Finished'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The last time this Data Collector completed.')
),
'last_status' => array(
'display' => __('Last Update'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The last time this Data Collector checked in with the main Cacti site.')
),
'last_sync' => array(
'display' => __('Last Sync'),
'align' => 'right',
'sort' => 'DESC',
'tip' => __('The last time this Data Collector was full synced with main Cacti site.')
)
);
html_header_sort_checkbox($display_text, get_request_var('sort_column'), get_request_var('sort_direction'), false);
$i = 0;
if (cacti_sizeof($pollers)) {
foreach ($pollers as $poller) {
if ($poller['id'] == 1) {
$disabled = true;
} else {
$disabled = false;
}
if ($poller['disabled'] == 'on') {
$poller['status'] = 4;
} elseif ($poller['heartbeat'] > 310) {
$poller['status'] = 6;
}
$mma = round($poller['avg_time'] ?: 0, 2) . '/' . round(max($poller['max_time'] ?: 1, 1), 2);
if (empty($poller['name'])) {
$poller['name'] = '&lt;no name&gt;';
}
$pt = read_config_option('poller_type');
form_alternate_row('line' . $poller['id'], true, $disabled);
form_selectable_cell(filter_value($poller['name'], get_request_var('filter'), 'pollers.php?action=edit&id=' . $poller['id']), $poller['id']);
form_selectable_cell($poller['id'], $poller['id'], '', 'right');
form_selectable_ecell($poller['hostname'], $poller['id'], '', 'right');
form_selectable_cell($poller_status[$poller['status']], $poller['id'], '', 'center');
form_selectable_cell($poller['processes'] . '/' . ($pt == 2 ? $poller['threads'] : '-'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['total_time'], 2), $poller['id'], '', 'right');
form_selectable_cell($mma, $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['hosts'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['snmp'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['script'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(number_format_i18n($poller['server'], '-1'), $poller['id'], '', 'right');
form_selectable_cell(substr($poller['last_update'], 5), $poller['id'], '', 'right');
form_selectable_cell(substr($poller['last_status'], 5), $poller['id'], '', 'right');
if ($poller['id'] == 1) {
form_selectable_cell(__('N/A'), $poller['id'], '', 'right');
} else {
form_selectable_cell(substr($poller['last_sync'], 5), $poller['id'], '', 'right');
}
form_checkbox_cell($poller['name'], $poller['id'], $disabled);
form_end_row();
}
} else {
print "<tr class='tableRow'><td colspan='" . (cacti_sizeof($display_text) + 1) . "'><em>" . __('No Data Collectors Found') . "</em></td></tr>\n";
}
html_end_box(false);
if (cacti_sizeof($pollers)) {
print $nav;
}
/* draw the dropdown containing a list of available actions for this form */
draw_actions_dropdown($actions);
form_end();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/Cacti.git
git@gitee.com:mirrors/Cacti.git
mirrors
Cacti
Cacti
develop

搜索帮助