mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-31 01:24:19 +02:00
Namely: Checkable#ProcessCheckResult() ClusterCheckTask::ScriptFunc() ClusterZoneCheckTask::ScriptFunc() DummyCheckTask::ScriptFunc() ExceptionCheckTask::ScriptFunc() IcingaCheckTask::ScriptFunc() IfwApiCheckTask::ScriptFunc() NullCheckTask::ScriptFunc() PluginCheckTask::ScriptFunc() RandomCheckTask::ScriptFunc() SleepCheckTask::ScriptFunc() IdoCheckTask::ScriptFunc() IcingadbCheck::ScriptFunc() CheckCommand#Execute() Checkable#ExecuteCheck() ClusterEvents::ExecuteCheckFromQueue() ExternalCommandProcessor::Process*CheckResult() ExternalCommandCallback ExternalCommandProcessor::Execute() ExternalCommandProcessor::ExecuteFromFile() ExternalCommandProcessor::ProcessFile() LivestatusQuery#ExecuteCommandHelper() LivestatusQuery#Execute()
34 lines
653 B
C++
34 lines
653 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef CHECKCOMMAND_H
|
|
#define CHECKCOMMAND_H
|
|
|
|
#include "icinga/checkcommand-ti.hpp"
|
|
#include "icinga/checkable.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A command.
|
|
*
|
|
* @ingroup icinga
|
|
*/
|
|
class CheckCommand final : public ObjectImpl<CheckCommand>
|
|
{
|
|
public:
|
|
DECLARE_OBJECT(CheckCommand);
|
|
DECLARE_OBJECTNAME(CheckCommand);
|
|
|
|
static thread_local CheckCommand::Ptr ExecuteOverride;
|
|
|
|
void Execute(const Checkable::Ptr& checkable, const CheckResult::Ptr& cr,
|
|
const WaitGroup::Ptr& producer,
|
|
const Dictionary::Ptr& resolvedMacros = nullptr,
|
|
bool useResolvedMacros = false);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CHECKCOMMAND_H */
|