mirror of https://github.com/Icinga/icinga2.git
parent
0d4e92015c
commit
effb834d3f
|
@ -39,8 +39,8 @@ using namespace icinga;
|
|||
REGISTER_TYPE(IdoMysqlConnection);
|
||||
REGISTER_STATSFUNCTION(IdoMysqlConnectionStats, &IdoMysqlConnection::StatsFunc);
|
||||
|
||||
IdoMysqlConnection::IdoMysqlConnection(void)
|
||||
: m_Connected(false)
|
||||
IdoMysqlConnection::IdoMysqlConnection(void)
|
||||
: m_QueryQueue(500000), m_Connected(false)
|
||||
{ }
|
||||
|
||||
Value IdoMysqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
||||
|
|
|
@ -41,8 +41,8 @@ REGISTER_TYPE(IdoPgsqlConnection);
|
|||
|
||||
REGISTER_STATSFUNCTION(IdoPgsqlConnectionStats, &IdoPgsqlConnection::StatsFunc);
|
||||
|
||||
IdoPgsqlConnection::IdoPgsqlConnection(void)
|
||||
: m_Connection(NULL)
|
||||
IdoPgsqlConnection::IdoPgsqlConnection(void)
|
||||
: m_QueryQueue(500000), m_Connection(NULL)
|
||||
{ }
|
||||
|
||||
Value IdoPgsqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
||||
|
|
Loading…
Reference in New Issue