mirror of https://github.com/Icinga/icinga2.git
config: Add missing attributes removing warnings.
This commit is contained in:
parent
5633eda892
commit
c179738a81
|
@ -64,6 +64,7 @@ type Host {
|
|||
%attribute number "notification_interval",
|
||||
%attribute name(TimePeriod) "notification_period",
|
||||
|
||||
%attribute number "enable_flapping",
|
||||
%attribute number "flapping_threshold",
|
||||
|
||||
%attribute array "servicegroups" {
|
||||
|
@ -108,7 +109,8 @@ type Host {
|
|||
},
|
||||
|
||||
%attribute number "notification_type_filter",
|
||||
%attribute number "notification_state_filter"
|
||||
%attribute number "notification_state_filter",
|
||||
%attribute name(TimePeriod) "notification_period"
|
||||
}
|
||||
},
|
||||
}
|
||||
|
@ -137,7 +139,8 @@ type Host {
|
|||
},
|
||||
|
||||
%attribute number "notification_type_filter",
|
||||
%attribute number "notification_state_filter"
|
||||
%attribute number "notification_state_filter",
|
||||
%attribute name(TimePeriod) "notification_period"
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -151,6 +154,7 @@ type Host {
|
|||
%attribute number "notification_interval",
|
||||
%attribute name(TimePeriod) "notification_period",
|
||||
|
||||
%attribute number "enable_flapping",
|
||||
%attribute number "flapping_threshold",
|
||||
|
||||
%attribute number "notification_type_filter",
|
||||
|
@ -217,6 +221,7 @@ type Service {
|
|||
%attribute number "notification_interval",
|
||||
%attribute name(TimePeriod) "notification_period",
|
||||
|
||||
%attribute number "enable_flapping",
|
||||
%attribute number "flapping_threshold",
|
||||
|
||||
%attribute array "hostdependencies" {
|
||||
|
@ -261,7 +266,8 @@ type Service {
|
|||
},
|
||||
|
||||
%attribute number "notification_type_filter",
|
||||
%attribute number "notification_state_filter"
|
||||
%attribute number "notification_state_filter",
|
||||
%attribute name(TimePeriod) "notification_period"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -317,7 +323,8 @@ type User {
|
|||
|
||||
%attribute number "enable_notifications",
|
||||
%attribute number "notification_type_filter",
|
||||
%attribute number "notification_state_filter"
|
||||
%attribute number "notification_state_filter",
|
||||
%attribute name(TimePeriod) "notification_period"
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue