2013-10-29 16:08:52 +01:00
|
|
|
#include "db_ido/dbquery.h"
|
2013-10-26 09:41:45 +02:00
|
|
|
#include "base/dynamicobject.h"
|
|
|
|
|
|
|
|
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;
|
|
|
|
}}}
|
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-10-29 16:08:52 +01:00
|
|
|
}
|