mirror of https://github.com/Icinga/icinga2.git
parent
939c875fe0
commit
282386e122
|
@ -576,6 +576,31 @@ Zones can be used for [high availability](#cluster-scenarios-high-availability),
|
||||||
|
|
||||||
TODO - FIXME
|
TODO - FIXME
|
||||||
|
|
||||||
|
Zones are organized below `/etc/icinga2/zones.d`. Each configured zone must exist with the
|
||||||
|
same directory name. The parent zone syncs the configuration to the child zones, if allowed.
|
||||||
|
|
||||||
|
object Zone "master" {
|
||||||
|
endpoints = [ "icinga2a" ]
|
||||||
|
}
|
||||||
|
|
||||||
|
object Zone "checker" {
|
||||||
|
endpoints = [ "icinga2b" ]
|
||||||
|
parent = "master"
|
||||||
|
}
|
||||||
|
|
||||||
|
/etc/icinga2/zones.d
|
||||||
|
master
|
||||||
|
health.conf
|
||||||
|
checker
|
||||||
|
health.conf
|
||||||
|
demo.conf
|
||||||
|
|
||||||
|
> **Note**
|
||||||
|
>
|
||||||
|
> `zones.d` must not be included in [icinga2.conf](#icinga2-conf). Icinga 2 automatically
|
||||||
|
> determines the required include directory. This can be overridden using the
|
||||||
|
> [global constant](#global-constants) `ZonesDir`.
|
||||||
|
|
||||||
### <a id="zone-permissions"></a> Zone Permissions
|
### <a id="zone-permissions"></a> Zone Permissions
|
||||||
|
|
||||||
TODO - FIXME
|
TODO - FIXME
|
||||||
|
|
Loading…
Reference in New Issue