From 7d795ae5e6a6987f9087d01742ecd3ea1756181c Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sun, 3 Feb 2013 11:45:56 +0100 Subject: [PATCH] Types: Added service attributes to the host type. --- itl/types.conf | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/itl/types.conf b/itl/types.conf index aca76528d..c09b80cad 100644 --- a/itl/types.conf +++ b/itl/types.conf @@ -50,11 +50,22 @@ type Host { dictionary hostchecks { string * }, + dictionary services { + any * /* TODO: more specific validation rules */ + }, + + /* service attributes */ + number max_check_attempts, + number check_interval, + number retry_interval, dictionary macros { string * }, - dictionary services { - any * /* TODO: more specific validation rules */ + dictionary servicegroups { + string * + }, + dictionary checkers { + string * } }