2010-09-03 18:26:59 +00:00
|
|
|
#!/usr/bin/env php
|
2009-10-28 13:49:37 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-09 10:01:42 +00:00
|
|
|
/**
|
2016-09-08 14:12:23 +01:00
|
|
|
* LibreNMS
|
2011-03-15 15:12:16 +00:00
|
|
|
*
|
2016-09-08 14:12:23 +01:00
|
|
|
* This file is part of LibreNMS.
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-09-08 14:12:23 +01:00
|
|
|
* @package LibreNMS
|
2013-10-28 12:01:36 -07:00
|
|
|
* @subpackage poller
|
|
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
2011-03-15 15:12:16 +00:00
|
|
|
*/
|
|
|
|
|
2016-11-21 14:12:59 -06:00
|
|
|
$init_modules = array('polling', 'alerts');
|
|
|
|
require __DIR__ . '/includes/init.php';
|
2009-10-28 13:49:37 +00:00
|
|
|
|
2016-01-08 13:33:32 +01:00
|
|
|
$poller_start = microtime(true);
|
2015-08-24 20:54:19 +00:00
|
|
|
echo $config['project_name_version']." Poller\n";
|
2016-01-06 00:14:35 +00:00
|
|
|
$versions = version_info(false);
|
|
|
|
echo "Version info:\n";
|
|
|
|
$cur_sha = $versions['local_sha'];
|
|
|
|
echo "Commit SHA: $cur_sha\n";
|
2016-07-06 12:15:14 -05:00
|
|
|
echo "Commit Date: ".$versions['local_date']."\n";
|
2016-01-06 00:14:35 +00:00
|
|
|
echo "DB Schema: ".$versions['db_schema']."\n";
|
|
|
|
echo "PHP: ".$versions['php_ver']."\n";
|
|
|
|
echo "MySQL: ".$versions['mysql_ver']."\n";
|
|
|
|
echo "RRDTool: ".$versions['rrdtool_ver']."\n";
|
|
|
|
echo "SNMP: ".$versions['netsnmp_ver']."\n";
|
2015-07-13 20:10:26 +02:00
|
|
|
|
2016-11-23 00:57:19 -06:00
|
|
|
$options = getopt('h:m:i:n:r::d::v::a::f::q');
|
2015-07-13 20:10:26 +02:00
|
|
|
|
|
|
|
if ($options['h'] == 'odd') {
|
|
|
|
$options['n'] = '1';
|
|
|
|
$options['i'] = '2';
|
2016-08-28 17:32:55 -05:00
|
|
|
} elseif ($options['h'] == 'even') {
|
2015-07-13 20:10:26 +02:00
|
|
|
$options['n'] = '0';
|
|
|
|
$options['i'] = '2';
|
2016-08-28 17:32:55 -05:00
|
|
|
} elseif ($options['h'] == 'all') {
|
2015-07-13 20:10:26 +02:00
|
|
|
$where = ' ';
|
|
|
|
$doing = 'all';
|
2016-08-28 17:32:55 -05:00
|
|
|
} elseif ($options['h']) {
|
2015-07-13 20:10:26 +02:00
|
|
|
if (is_numeric($options['h'])) {
|
2016-09-21 18:56:42 +01:00
|
|
|
$where = "AND `device_id` = ".$options['h'];
|
2015-07-13 20:10:26 +02:00
|
|
|
$doing = $options['h'];
|
2016-08-28 17:32:55 -05:00
|
|
|
} else {
|
2016-09-21 18:56:42 +01:00
|
|
|
if (preg_match('/\*/', $options['h'])) {
|
|
|
|
$where = "AND `hostname` LIKE '".str_replace('*', '%', mres($options['h']))."'";
|
|
|
|
} else {
|
|
|
|
$where = "AND `hostname` = '".mres($options['h'])."'";
|
|
|
|
}
|
2015-07-13 20:10:26 +02:00
|
|
|
$doing = $options['h'];
|
|
|
|
}
|
2010-07-19 18:21:48 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (isset($options['i']) && $options['i'] && isset($options['n'])) {
|
|
|
|
$where = true;
|
|
|
|
// FIXME
|
2016-12-16 18:15:13 +00:00
|
|
|
$query = 'SELECT * FROM (SELECT @rownum :=0) r,
|
2015-07-13 20:10:26 +02:00
|
|
|
(
|
2016-12-22 21:33:51 +00:00
|
|
|
SELECT @rownum := @rownum +1 AS rownum, `devices`.*
|
2015-07-13 20:10:26 +02:00
|
|
|
FROM `devices`
|
|
|
|
WHERE `disabled` = 0
|
|
|
|
ORDER BY `device_id` ASC
|
|
|
|
) temp
|
|
|
|
WHERE MOD(temp.rownum, '.mres($options['i']).') = '.mres($options['n']).';';
|
|
|
|
$doing = $options['n'].'/'.$options['i'];
|
2009-10-28 13:49:37 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (!$where) {
|
|
|
|
echo "-h <device id> | <device hostname wildcard> Poll single device\n";
|
|
|
|
echo "-h odd Poll odd numbered devices (same as -i 2 -n 0)\n";
|
|
|
|
echo "-h even Poll even numbered devices (same as -i 2 -n 1)\n";
|
|
|
|
echo "-h all Poll all devices\n\n";
|
|
|
|
echo "-i <instances> -n <number> Poll as instance <number> of <instances>\n";
|
|
|
|
echo " Instances start at 0. 0-3 for -n 4\n\n";
|
|
|
|
echo "Debugging and testing options:\n";
|
|
|
|
echo "-r Do not create or update RRDs\n";
|
2015-08-19 20:58:02 +00:00
|
|
|
echo "-f Do not insert data into InfluxDB\n";
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "-d Enable debugging output\n";
|
2016-08-12 21:39:53 +01:00
|
|
|
echo "-v Enable verbose debugging output\n";
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "-m Specify module(s) to be run\n";
|
|
|
|
echo "\n";
|
|
|
|
echo "No polling type specified!\n";
|
|
|
|
exit;
|
2011-03-27 10:21:19 +00:00
|
|
|
}
|
2009-10-28 13:49:37 +00:00
|
|
|
|
2016-01-17 14:39:17 +00:00
|
|
|
if (isset($options['d']) || isset($options['v'])) {
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "DEBUG!\n";
|
2016-01-17 14:39:17 +00:00
|
|
|
if (isset($options['v'])) {
|
|
|
|
$vdebug = true;
|
|
|
|
}
|
2015-07-13 20:10:26 +02:00
|
|
|
$debug = true;
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
ini_set('log_errors', 1);
|
|
|
|
ini_set('error_reporting', 1);
|
2016-08-28 17:32:55 -05:00
|
|
|
} else {
|
2015-07-13 20:10:26 +02:00
|
|
|
$debug = false;
|
|
|
|
// ini_set('display_errors', 0);
|
|
|
|
ini_set('display_startup_errors', 0);
|
|
|
|
ini_set('log_errors', 0);
|
|
|
|
// ini_set('error_reporting', 0);
|
2010-08-21 12:54:42 +00:00
|
|
|
}
|
2010-06-23 19:17:06 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if (isset($options['r'])) {
|
|
|
|
$config['norrd'] = true;
|
2012-05-03 10:45:36 +00:00
|
|
|
}
|
|
|
|
|
2015-08-19 20:58:02 +00:00
|
|
|
if (isset($options['f'])) {
|
|
|
|
$config['noinfluxdb'] = true;
|
|
|
|
}
|
|
|
|
|
2015-12-18 11:15:56 +00:00
|
|
|
if ($config['noinfluxdb'] !== true && $config['influxdb']['enable'] === true) {
|
2015-08-19 20:58:02 +00:00
|
|
|
$influxdb = influxdb_connect();
|
2016-08-28 17:32:55 -05:00
|
|
|
} else {
|
2015-12-18 11:15:56 +00:00
|
|
|
$influxdb = false;
|
|
|
|
}
|
2015-08-19 20:58:02 +00:00
|
|
|
|
2016-08-22 10:32:05 -05:00
|
|
|
rrdtool_initialize();
|
2011-10-01 14:54:06 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
echo "Starting polling run:\n\n";
|
2010-06-23 19:17:06 +00:00
|
|
|
$polled_devices = 0;
|
2015-07-13 20:10:26 +02:00
|
|
|
if (!isset($query)) {
|
2016-12-16 18:15:13 +00:00
|
|
|
$query = "SELECT * FROM `devices` WHERE `disabled` = 0 $where ORDER BY `device_id` ASC";
|
2011-05-03 12:22:04 +00:00
|
|
|
}
|
2011-03-08 17:14:32 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
foreach (dbFetch($query) as $device) {
|
2016-10-15 02:03:26 +01:00
|
|
|
if ($device['os_group'] == 'cisco') {
|
|
|
|
$device['vrf_lite_cisco'] = dbFetchRows("SELECT * FROM `vrf_lite_cisco` WHERE `device_id` = " . $device['device_id']);
|
|
|
|
} else {
|
|
|
|
$device['vrf_lite_cisco'] = '';
|
|
|
|
}
|
2015-09-02 14:46:42 +01:00
|
|
|
poll_device($device, $options);
|
2016-09-25 16:01:58 +01:00
|
|
|
echo "#### Start Alerts ####\n";
|
2015-09-02 14:46:42 +01:00
|
|
|
RunRules($device['device_id']);
|
2016-09-25 16:01:58 +01:00
|
|
|
echo "#### End Alerts ####\r\n";
|
2015-07-13 20:10:26 +02:00
|
|
|
$polled_devices++;
|
2011-05-03 21:17:04 +00:00
|
|
|
}
|
|
|
|
|
2016-01-08 13:33:32 +01:00
|
|
|
$poller_end = microtime(true);
|
2015-07-13 20:10:26 +02:00
|
|
|
$poller_run = ($poller_end - $poller_start);
|
|
|
|
$poller_time = substr($poller_run, 0, 5);
|
2011-05-03 21:17:04 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
if ($polled_devices) {
|
|
|
|
dbInsert(array('type' => 'poll', 'doing' => $doing, 'start' => $poller_start, 'duration' => $poller_time, 'devices' => $polled_devices, 'poller' => $config['distributed_poller_name'] ), 'perf_times');
|
2011-05-08 00:13:58 +00:00
|
|
|
}
|
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
$string = $argv[0]." $doing ".date($config['dateformat']['compact'])." - $polled_devices devices polled in $poller_time secs";
|
2015-08-20 16:06:44 +02:00
|
|
|
d_echo("$string\n");
|
2011-05-13 11:42:26 +00:00
|
|
|
|
2016-11-23 00:57:19 -06:00
|
|
|
if (!isset($options['q'])) {
|
|
|
|
printStats();
|
|
|
|
}
|
2010-11-24 11:32:53 +00:00
|
|
|
|
2011-09-20 14:29:04 +00:00
|
|
|
logfile($string);
|
2016-08-26 01:50:29 -05:00
|
|
|
rrdtool_close();
|
2015-07-13 20:10:26 +02:00
|
|
|
unset($config);
|
|
|
|
// Remove this for testing
|
|
|
|
// print_r(get_defined_vars());
|