summaryrefslogtreecommitdiffstats
path: root/lib/checker/checkercomponent.ti
blob: 3959aeb489291edb6684b60cc0cdfe1d5faa925f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* 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;
};

}