mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-28 01:59:34 -05:00
BusinessProcess: drop $ido, use MonitoringBackend
This commit is contained in:
parent
c86b5ac437
commit
090eed6b70
1 changed files with 9 additions and 1 deletions
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
namespace Icinga\Module\Businessprocess;
|
||||
|
||||
use Icinga\Module\Monitoring\Backend\MonitoringBackend;
|
||||
use Icinga\Data\Filter\Filter;
|
||||
use Exception;
|
||||
|
||||
|
|
@ -9,7 +10,14 @@ class BusinessProcess
|
|||
{
|
||||
const SOFT_STATE = 0;
|
||||
const HARD_STATE = 1;
|
||||
protected $ido;
|
||||
|
||||
/**
|
||||
* Monitoring backend to retrieve states from
|
||||
*
|
||||
* @var MonitoringBackend
|
||||
*/
|
||||
protected $backend;
|
||||
|
||||
protected $filename;
|
||||
protected $name;
|
||||
protected $bps;
|
||||
|
|
|
|||
Loading…
Reference in a new issue