2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2016-08-08 06:51:20 -04:00
|
|
|
|
|
|
|
|
#ifndef EXCEPTIONCHECKTASK_H
|
|
|
|
|
#define EXCEPTIONCHECKTASK_H
|
|
|
|
|
|
|
|
|
|
#include "icinga/service.hpp"
|
|
|
|
|
#include "base/dictionary.hpp"
|
|
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Test class for additional check types. Implements the "exception" check type.
|
|
|
|
|
*
|
|
|
|
|
* @ingroup methods
|
|
|
|
|
*/
|
|
|
|
|
class ExceptionCheckTask
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
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);
|
2016-08-08 06:51:20 -04:00
|
|
|
|
|
|
|
|
private:
|
2018-01-03 22:25:35 -05:00
|
|
|
ExceptionCheckTask();
|
2016-08-08 06:51:20 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* EXCEPTIONCHECKTASK_H */
|