mirror of https://github.com/Icinga/icinga2.git
19 lines
309 B
Plaintext
19 lines
309 B
Plaintext
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#include "base/configobject.hpp"
|
|
|
|
library checker;
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class CheckerComponent : ConfigObject
|
|
{
|
|
activation_priority 300;
|
|
|
|
/* Has no effect. Keep this here to avoid breaking config changes. */
|
|
[deprecated, config] int concurrent_checks;
|
|
};
|
|
|
|
}
|