2014-05-25 16:23:35 +02:00
|
|
|
#include "db_ido/dbquery.hpp"
|
|
|
|
#include "base/dynamicobject.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2013-11-08 11:17:46 +01:00
|
|
|
abstract class DbConnection : DynamicObject
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
|
|
|
[config] String table_prefix {
|
|
|
|
default {{{ return "icinga_"; }}}
|
|
|
|
};
|
|
|
|
|
|
|
|
[config] Dictionary::Ptr cleanup {
|
2013-11-06 08:51:56 +01:00
|
|
|
default {{{ return make_shared<Dictionary>(); }}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2013-10-29 16:08:52 +01:00
|
|
|
|
|
|
|
[config] int categories {
|
|
|
|
default {{{
|
|
|
|
return DbCatConfig | DbCatState | DbCatAcknowledgement |
|
|
|
|
DbCatComment | DbCatDowntime | DbCatEventHandler | DbCatExternalCommand | DbCatFlapping |
|
|
|
|
DbCatLog | DbCatNotification | DbCatProgramStatus | DbCatRetention | DbCatStateHistory;
|
|
|
|
}}}
|
|
|
|
};
|
2014-08-13 17:46:43 +02:00
|
|
|
|
|
|
|
[config] bool enable_ha {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
2014-08-15 17:13:32 +02:00
|
|
|
|
|
|
|
[config] double failover_timeout {
|
|
|
|
default {{{ return 60; }}}
|
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-10-29 16:08:52 +01:00
|
|
|
}
|