mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-25 22:54:57 +02:00
parent
2b86039435
commit
30c445a5ee
@ -39,7 +39,7 @@ Timer::Ptr DbConnection::m_ProgramStatusTimer;
|
|||||||
boost::once_flag DbConnection::m_OnceFlag = BOOST_ONCE_INIT;
|
boost::once_flag DbConnection::m_OnceFlag = BOOST_ONCE_INIT;
|
||||||
|
|
||||||
DbConnection::DbConnection(void)
|
DbConnection::DbConnection(void)
|
||||||
: m_QueryStats(15 * 60)
|
: m_QueryStats(15 * 60), m_PendingQueries(0), m_PendingQueriesTimestamp(0)
|
||||||
{ }
|
{ }
|
||||||
|
|
||||||
void DbConnection::OnConfigLoaded(void)
|
void DbConnection::OnConfigLoaded(void)
|
||||||
@ -65,6 +65,34 @@ void DbConnection::Start(bool runtimeCreated)
|
|||||||
ConfigObject::OnActiveChanged.connect(boost::bind(&DbConnection::UpdateObject, this, _1));
|
ConfigObject::OnActiveChanged.connect(boost::bind(&DbConnection::UpdateObject, this, _1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void DbConnection::StatsLoggerTimerHandler(void)
|
||||||
|
{
|
||||||
|
int pending = GetPendingQueryCount();
|
||||||
|
|
||||||
|
double now = Utility::GetTime();
|
||||||
|
double gradient = (pending - m_PendingQueries) / (now - m_PendingQueriesTimestamp);
|
||||||
|
double timeToZero = -pending / gradient;
|
||||||
|
|
||||||
|
String timeInfo;
|
||||||
|
|
||||||
|
if (pending > GetQueryCount(5)) {
|
||||||
|
timeInfo = " empty in ";
|
||||||
|
if (timeToZero < 0)
|
||||||
|
timeInfo += "infinite time, your database isn't able to keep up";
|
||||||
|
else
|
||||||
|
timeInfo += Utility::FormatDuration(timeToZero);
|
||||||
|
}
|
||||||
|
|
||||||
|
m_PendingQueries = pending;
|
||||||
|
m_PendingQueriesTimestamp = now;
|
||||||
|
|
||||||
|
Log(LogInformation, GetReflectionType()->GetName())
|
||||||
|
<< "Query queue items: " << pending
|
||||||
|
<< ", query rate: " << std::setw(2) << GetQueryCount(60) / 60.0 << "/s"
|
||||||
|
<< " (" << GetQueryCount(60) << "/min " << GetQueryCount(5 * 60) << "/5min " << GetQueryCount(15 * 60) << "/15min);"
|
||||||
|
<< timeInfo;
|
||||||
|
}
|
||||||
|
|
||||||
void DbConnection::Resume(void)
|
void DbConnection::Resume(void)
|
||||||
{
|
{
|
||||||
ConfigObject::Resume();
|
ConfigObject::Resume();
|
||||||
@ -76,6 +104,11 @@ void DbConnection::Resume(void)
|
|||||||
m_CleanUpTimer->SetInterval(60);
|
m_CleanUpTimer->SetInterval(60);
|
||||||
m_CleanUpTimer->OnTimerExpired.connect(boost::bind(&DbConnection::CleanUpHandler, this));
|
m_CleanUpTimer->OnTimerExpired.connect(boost::bind(&DbConnection::CleanUpHandler, this));
|
||||||
m_CleanUpTimer->Start();
|
m_CleanUpTimer->Start();
|
||||||
|
|
||||||
|
m_StatsLoggerTimer = new Timer();
|
||||||
|
m_StatsLoggerTimer->SetInterval(15);
|
||||||
|
m_StatsLoggerTimer->OnTimerExpired.connect(boost::bind(&DbConnection::StatsLoggerTimerHandler, this));
|
||||||
|
m_StatsLoggerTimer->Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
void DbConnection::Pause(void)
|
void DbConnection::Pause(void)
|
||||||
|
@ -114,11 +114,16 @@ private:
|
|||||||
static Timer::Ptr m_ProgramStatusTimer;
|
static Timer::Ptr m_ProgramStatusTimer;
|
||||||
static boost::once_flag m_OnceFlag;
|
static boost::once_flag m_OnceFlag;
|
||||||
|
|
||||||
|
Timer::Ptr m_StatsLoggerTimer;
|
||||||
|
void StatsLoggerTimerHandler(void);
|
||||||
|
|
||||||
static void InsertRuntimeVariable(const String& key, const Value& value);
|
static void InsertRuntimeVariable(const String& key, const Value& value);
|
||||||
static void ProgramStatusHandler(void);
|
static void ProgramStatusHandler(void);
|
||||||
|
|
||||||
mutable boost::mutex m_StatsMutex;
|
mutable boost::mutex m_StatsMutex;
|
||||||
RingBuffer m_QueryStats;
|
RingBuffer m_QueryStats;
|
||||||
|
int m_PendingQueries;
|
||||||
|
double m_PendingQueriesTimestamp;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct database_error : virtual std::exception, virtual boost::exception { };
|
struct database_error : virtual std::exception, virtual boost::exception { };
|
||||||
|
@ -387,6 +387,18 @@ void IdoMysqlConnection::Reconnect(void)
|
|||||||
ClearCustomVarTable("customvariables");
|
ClearCustomVarTable("customvariables");
|
||||||
ClearCustomVarTable("customvariablestatus");
|
ClearCustomVarTable("customvariablestatus");
|
||||||
|
|
||||||
|
m_QueryQueue.Enqueue(boost::bind(&IdoMysqlConnection::FinishConnect, this, startTime), PriorityLow);
|
||||||
|
}
|
||||||
|
|
||||||
|
void IdoMysqlConnection::FinishConnect(double startTime)
|
||||||
|
{
|
||||||
|
AssertOnWorkQueue();
|
||||||
|
|
||||||
|
if (!GetConnected())
|
||||||
|
return;
|
||||||
|
|
||||||
|
FinishAsyncQueries();
|
||||||
|
|
||||||
Log(LogInformation, "IdoMysqlConnection")
|
Log(LogInformation, "IdoMysqlConnection")
|
||||||
<< "Finished reconnecting to MySQL IDO database in " << std::setw(2) << Utility::GetTime() - startTime << " second(s).";
|
<< "Finished reconnecting to MySQL IDO database in " << std::setw(2) << Utility::GetTime() - startTime << " second(s).";
|
||||||
|
|
||||||
|
@ -118,6 +118,8 @@ private:
|
|||||||
void ClearCustomVarTable(const String& table);
|
void ClearCustomVarTable(const String& table);
|
||||||
|
|
||||||
void ExceptionHandler(boost::exception_ptr exp);
|
void ExceptionHandler(boost::exception_ptr exp);
|
||||||
|
|
||||||
|
void FinishConnect(double startTime);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -377,6 +377,16 @@ void IdoPgsqlConnection::Reconnect(void)
|
|||||||
ClearCustomVarTable("customvariables");
|
ClearCustomVarTable("customvariables");
|
||||||
ClearCustomVarTable("customvariablestatus");
|
ClearCustomVarTable("customvariablestatus");
|
||||||
|
|
||||||
|
m_QueryQueue.Enqueue(boost::bind(&IdoPgsqlConnection::FinishConnect, this, startTime), PriorityLow);
|
||||||
|
}
|
||||||
|
|
||||||
|
void IdoPgsqlConnection::FinishConnect(double startTime)
|
||||||
|
{
|
||||||
|
AssertOnWorkQueue();
|
||||||
|
|
||||||
|
if (!GetConnected())
|
||||||
|
return;
|
||||||
|
|
||||||
Log(LogInformation, "IdoPgsqlConnection")
|
Log(LogInformation, "IdoPgsqlConnection")
|
||||||
<< "Finished reconnecting to PostgreSQL IDO database in " << std::setw(2) << Utility::GetTime() - startTime << " second(s).";
|
<< "Finished reconnecting to PostgreSQL IDO database in " << std::setw(2) << Utility::GetTime() - startTime << " second(s).";
|
||||||
|
|
||||||
|
@ -91,6 +91,8 @@ private:
|
|||||||
void TxTimerHandler(void);
|
void TxTimerHandler(void);
|
||||||
void ReconnectTimerHandler(void);
|
void ReconnectTimerHandler(void);
|
||||||
|
|
||||||
|
void StatsLoggerTimerHandler(void);
|
||||||
|
|
||||||
bool CanExecuteQuery(const DbQuery& query);
|
bool CanExecuteQuery(const DbQuery& query);
|
||||||
|
|
||||||
void InternalExecuteQuery(const DbQuery& query, DbQueryType *typeOverride = NULL);
|
void InternalExecuteQuery(const DbQuery& query, DbQueryType *typeOverride = NULL);
|
||||||
@ -101,6 +103,8 @@ private:
|
|||||||
void ClearCustomVarTable(const String& table);
|
void ClearCustomVarTable(const String& table);
|
||||||
|
|
||||||
void ExceptionHandler(boost::exception_ptr exp);
|
void ExceptionHandler(boost::exception_ptr exp);
|
||||||
|
|
||||||
|
void FinishConnect(double startTime);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user