icinga2/lib/db_ido/dbconnection.ti

31 lines
669 B
Plaintext
Raw Normal View History

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
{
abstract class DbConnection : DynamicObject
2013-10-26 09:41:45 +02:00
{
[config] String table_prefix {
default {{{ return "icinga_"; }}}
};
[config] Dictionary::Ptr cleanup {
default {{{ return make_shared<Dictionary>(); }}}
2013-10-26 09:41:45 +02:00
};
[config] int categories {
default {{{
return DbCatConfig | DbCatState | DbCatAcknowledgement |
DbCatComment | DbCatDowntime | DbCatEventHandler | DbCatExternalCommand | DbCatFlapping |
DbCatLog | DbCatNotification | DbCatProgramStatus | DbCatRetention | DbCatStateHistory;
}}}
};
[config] bool enable_ha {
default {{{ return true; }}}
};
2013-10-26 09:41:45 +02:00
};
}