2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-05-25 11:10:57 -04:00
|
|
|
|
|
|
|
|
#ifndef CLUSTERZONECHECKTASK_H
|
|
|
|
|
#define CLUSTERZONECHECKTASK_H
|
|
|
|
|
|
|
|
|
|
#include "icinga/service.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Cluster zone check type.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup methods
|
|
|
|
|
*/
|
|
|
|
|
class ClusterZoneCheckTask
|
|
|
|
|
{
|
|
|
|
|
public:
|
2014-11-13 05:23:57 -05:00
|
|
|
static void ScriptFunc(const Checkable::Ptr& service, const CheckResult::Ptr& cr,
|
2025-05-22 11:56:16 -04:00
|
|
|
const WaitGroup::Ptr& producer, const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
|
2014-05-25 11:10:57 -04:00
|
|
|
|
|
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
ClusterZoneCheckTask();
|
2014-05-25 11:10:57 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* CLUSTERZONECHECKTASK_H */
|