mirror of https://github.com/Icinga/icinga2.git
27 lines
602 B
Plaintext
27 lines
602 B
Plaintext
#include "db_ido/dbquery.h"
|
|
#include "base/dynamicobject.h"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
abstract class DbConnection : DynamicObject
|
|
{
|
|
[config] String table_prefix {
|
|
default {{{ return "icinga_"; }}}
|
|
};
|
|
|
|
[config] Dictionary::Ptr cleanup {
|
|
default {{{ return make_shared<Dictionary>(); }}}
|
|
};
|
|
|
|
[config] int categories {
|
|
default {{{
|
|
return DbCatConfig | DbCatState | DbCatAcknowledgement |
|
|
DbCatComment | DbCatDowntime | DbCatEventHandler | DbCatExternalCommand | DbCatFlapping |
|
|
DbCatLog | DbCatNotification | DbCatProgramStatus | DbCatRetention | DbCatStateHistory;
|
|
}}}
|
|
};
|
|
};
|
|
|
|
}
|