icingaweb2/modules/monitoring/library/Monitoring/Command/Instance/ToggleObsessingOverHostChecks.php
Eric Lippmann cd29adc0bd monitoring/commands: Add (START|STOP)_OBSESSING_OVER_HOST_CHECKS commands
`ToggleObsessingOverHostChecks' is the command object for enabling/disabling processing of host checks via the OCHP command on an Icinga instance.

refs #6593
2014-09-01 15:14:49 +02:00

23 lines
649 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Command\Instance;
use Icinga\Module\Monitoring\Command\Common\ToggleFeature;
/**
* Enable/disable processing of host checks via the OCHP command on an Icinga instance
*/
class ToggleObsessingOverHostChecks extends ToggleFeature
{
/**
* (non-PHPDoc)
* @see \Icinga\Module\Monitoring\Command\IcingaCommand::getCommandString() For the method documentation.
*/
public function getCommandString()
{
return $this->enable === true ? 'START_OBSESSING_OVER_HOST_CHECKS' : 'STOP_OBSESSING_OVER_HOST_CHECKS';
}
}