2017-10-26 01:56:09 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* DistributedPoller.php
|
|
|
|
*
|
|
|
|
* -Description-
|
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @package LibreNMS
|
|
|
|
* @link http://librenms.org
|
|
|
|
* @copyright 2017 Tony Murray
|
|
|
|
* @author Tony Murray <murraytony@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by IntelliJ IDEA.
|
|
|
|
* User: murrant
|
|
|
|
* Date: 10/8/17
|
|
|
|
* Time: 2:16 AM
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace LibreNMS\Validations;
|
|
|
|
|
|
|
|
use LibreNMS\Config;
|
|
|
|
use LibreNMS\Validator;
|
|
|
|
|
2018-02-27 09:57:20 -06:00
|
|
|
class DistributedPoller extends BaseValidation
|
2017-10-26 01:56:09 -05:00
|
|
|
{
|
2018-02-27 09:57:20 -06:00
|
|
|
protected static $RUN_BY_DEFAULT = false;
|
|
|
|
|
2017-10-26 01:56:09 -05:00
|
|
|
/**
|
|
|
|
* Validate this module.
|
|
|
|
* To return ValidationResults, call ok, warn, fail, or result methods on the $validator
|
|
|
|
*
|
|
|
|
* @param Validator $validator
|
|
|
|
*/
|
|
|
|
public function validate(Validator $validator)
|
|
|
|
{
|
2020-09-21 14:54:51 +02:00
|
|
|
if (! Config::get('distributed_poller')) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('You have not enabled distributed_poller');
|
2020-09-21 14:54:51 +02:00
|
|
|
|
2017-10-26 01:56:09 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-21 14:54:51 +02:00
|
|
|
if (! Config::get('distributed_poller_memcached_host')) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('You have not configured $config[\'distributed_poller_memcached_host\']');
|
2020-09-21 14:54:51 +02:00
|
|
|
} elseif (! Config::get('distributed_poller_memcached_port')) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('You have not configured $config[\'distributed_poller_memcached_port\']');
|
|
|
|
} else {
|
|
|
|
$connection = @fsockopen(Config::get('distributed_poller_memcached_host'), Config::get('distributed_poller_memcached_port'));
|
2020-09-21 14:54:51 +02:00
|
|
|
if (! is_resource($connection)) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('We could not get memcached stats, it is possible that we cannot connect to your memcached server, please check');
|
|
|
|
} else {
|
|
|
|
fclose($connection);
|
|
|
|
$validator->ok('Connection to memcached is ok');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-21 14:54:51 +02:00
|
|
|
if (! Config::get('rrdcached')) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('You have not configured $config[\'rrdcached\']');
|
2020-09-21 14:54:51 +02:00
|
|
|
} elseif (! is_dir(Config::get('rrd_dir'))) {
|
2017-10-26 01:56:09 -05:00
|
|
|
$validator->fail('You have not configured $config[\'rrd_dir\']');
|
|
|
|
} else {
|
|
|
|
Rrd::checkRrdcached($validator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|