monitoring/commands: Add (START|STOP)_OBSESSING_OVER_SERVICE_CHECKS commands

`ToggleObsessingOverServiceChecks' is the command object for enabling/disabling processing of service checks via the OCHP command on an Icinga instance.

refs #6593
This commit is contained in:
Eric Lippmann 2014-09-01 15:15:11 +02:00
parent cd29adc0bd
commit c5e35c9614
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Command\Instance;
use Icinga\Module\Monitoring\Command\Common\ToggleFeature;
/**
* Enable/disable processing of service checks via the OCHP command on an Icinga instance
*/
class ToggleObsessingOverServiceChecks 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_SVC_CHECKS' : 'STOP_OBSESSING_OVER_SVC_CHECKS';
}
}