Types: Added service attributes to the host type.

This commit is contained in:
Gunnar Beutner 2013-02-03 11:45:56 +01:00
parent a88d9b5646
commit 7d795ae5e6

View File

@ -50,11 +50,22 @@ type Host {
dictionary hostchecks { dictionary hostchecks {
string * string *
}, },
dictionary services {
any * /* TODO: more specific validation rules */
},
/* service attributes */
number max_check_attempts,
number check_interval,
number retry_interval,
dictionary macros { dictionary macros {
string * string *
}, },
dictionary services { dictionary servicegroups {
any * /* TODO: more specific validation rules */ string *
},
dictionary checkers {
string *
} }
} }