2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-02-07 08:03:53 -05:00
|
|
|
|
|
|
|
|
#ifndef CLUSTERCHECKTASK_H
|
|
|
|
|
#define CLUSTERCHECKTASK_H
|
|
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/service.hpp"
|
2014-02-07 08:03:53 -05:00
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Cluster check type.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup methods
|
|
|
|
|
*/
|
2014-02-12 03:33:04 -05:00
|
|
|
class ClusterCheckTask
|
2014-02-07 08:03:53 -05:00
|
|
|
{
|
|
|
|
|
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-02-07 08:03:53 -05:00
|
|
|
|
|
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
ClusterCheckTask();
|
2014-08-17 11:57:20 -04:00
|
|
|
static String FormatArray(const Array::Ptr& arr);
|
2014-02-07 08:03:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* CLUSTERCHECKTASK_H */
|