icinga2/lib/checker/checkercomponent.ti

28 lines
447 B
Plaintext
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#include "base/configobject.hpp"
2013-10-26 09:41:45 +02:00
library checker;
2013-10-26 09:41:45 +02:00
namespace icinga
{
class CheckerComponent : ConfigObject
2013-10-26 09:41:45 +02:00
{
activation_priority 300;
2018-05-15 11:25:28 +02:00
[config, no_storage] int concurrent_checks {
get {{{
return Application::GetMaxConcurrentChecks();
}}}
set {{{
Application::SetMaxConcurrentChecks(value);
}}}
default {{{
return Application::GetDefaultMaxConcurrentChecks();
}}}
};
2013-10-26 09:41:45 +02:00
};
}