mirror of https://github.com/Icinga/icinga2.git
16 lines
558 B
Plaintext
16 lines
558 B
Plaintext
|
/**
|
||
|
* This is a copy of the default configuration file "ido-mysql.conf" with the "categories" attribute added
|
||
|
*/
|
||
|
|
||
|
library "db_ido_mysql"
|
||
|
|
||
|
object IdoMysqlConnection "ido-mysql" {
|
||
|
user = "icinga",
|
||
|
password = "icinga",
|
||
|
host = "localhost",
|
||
|
database = "icinga",
|
||
|
categories = (DbCatCheck | DbCatConfig | DbCatState | DbCatAcknowledgement |
|
||
|
DbCatComment | DbCatDowntime | DbCatEventHandler | DbCatExternalCommand | DbCatFlapping |
|
||
|
DbCatLog | DbCatNotification | DbCatProgramStatus | DbCatRetention | DbCatStateHistory)
|
||
|
}
|