. * * @link https://www.librenms.org * * @copyright 2017 Tony Murray * @author Tony Murray */ namespace LibreNMS\Validations; use LibreNMS\Config; class DistributedPoller extends BaseValidation { protected $directory = 'DistributedPoller'; protected $name = 'distributedpoller'; public function isDefault(): bool { // run by default if distributed polling is enabled return Config::get('distributed_poller'); } }