Add more feature config files.

This commit is contained in:
Gunnar Beutner 2013-09-30 09:53:38 +02:00
parent 2a051cdea4
commit d65ba6a40f
6 changed files with 36 additions and 13 deletions

View File

@ -60,7 +60,6 @@ In order for commands to work you will need to grant the web server
write permissions for the command pipe:
# chgrp www-data /var/run/icinga2/cmd/icinga2.cmd
# chmod 660 /var/run/icinga2/cmd/icinga2.cmd
> **Note**
>

View File

@ -0,0 +1,9 @@
/**
* The ExternalCommandListener implements support for the external
* commands pipe.
*/
library "compat"
object ExternalCommandListener "command" { }

View File

@ -0,0 +1,9 @@
/**
* The CompatLogger type is responsible for writing log files in a format
* that is compatible with Icinga 1.x.
*/
library "compat"
object CompatLogger "compat-log" { }

View File

@ -1,12 +0,0 @@
/**
* The compat library periodically updates the status.dat and objects.cache
* files. These are used by the Icinga 1.x CGIs to display the state of
* hosts and services. CompatLog writeis the Icinga 1.x icinga.log and archives.
*/
library "compat"
object StatusDataWriter "status" { }
object ExternalCommandListener "command" { }
object CompatLogger "compat-log" { }

View File

@ -0,0 +1,8 @@
/**
* The livestatus library implements the livestatus query protocol.
*/
library "livestatus"
object LivestatusListener "livestatus" { }

View File

@ -0,0 +1,10 @@
/**
* The StatusDataWriter type periodically updates the status.dat and objects.cache
* files. These are used by the Icinga 1.x CGIs to display the state of
* hosts and services.
*/
library "compat"
object StatusDataWriter "status" { }