2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-05-25 17:10:57 +02: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 11:23:57 +01:00
|
|
|
static void ScriptFunc(const Checkable::Ptr& service, const CheckResult::Ptr& cr,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Dictionary::Ptr& resolvedMacros, bool useResolvedMacros);
|
2014-05-25 17:10:57 +02:00
|
|
|
|
|
|
|
private:
|
2018-01-04 04:25:35 +01:00
|
|
|
ClusterZoneCheckTask();
|
2014-05-25 17:10:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CLUSTERZONECHECKTASK_H */
|