2014-10-17 19:44:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-10-17 19:44:31 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "db_ido/dbquery.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configobject.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2015-08-04 14:47:44 +02:00
|
|
|
library db_ido;
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2015-08-15 20:28:05 +02:00
|
|
|
abstract class DbConnection : ConfigObject
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
|
|
|
[config] String table_prefix {
|
|
|
|
default {{{ return "icinga_"; }}}
|
|
|
|
};
|
|
|
|
|
|
|
|
[config] Dictionary::Ptr cleanup {
|
2014-11-08 21:17:16 +01:00
|
|
|
default {{{ return new 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; }}}
|
|
|
|
};
|
2015-03-12 09:39:53 +01:00
|
|
|
|
|
|
|
String schema_version;
|
|
|
|
bool connected;
|
|
|
|
bool should_connect {
|
|
|
|
default {{{ return true; }}}
|
|
|
|
};
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2014-11-30 23:32:13 +01:00
|
|
|
|
|
|
|
validator DbConnection {
|
|
|
|
Dictionary cleanup {
|
|
|
|
Number acknowledgements_age;
|
|
|
|
Number commenthistory_age;
|
|
|
|
Number contactnotifications_age;
|
|
|
|
Number contactnotificationmethods_age;
|
|
|
|
Number downtimehistory_age;
|
|
|
|
Number eventhandlers_age;
|
|
|
|
Number externalcommands_age;
|
|
|
|
Number flappinghistory_age;
|
|
|
|
Number hostchecks_age;
|
|
|
|
Number logentries_age;
|
|
|
|
Number notifications_age;
|
|
|
|
Number processevents_age;
|
|
|
|
Number statehistory_age;
|
|
|
|
Number servicechecks_age;
|
|
|
|
Number systemcommands_age;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-10-29 16:08:52 +01:00
|
|
|
}
|