icinga2/lib/icinga/cib.hpp

105 lines
3.5 KiB
C++
Raw Normal View History

/******************************************************************************
* Icinga 2 *
2015-01-22 12:00:23 +01:00
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* 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. *
******************************************************************************/
2012-06-27 18:43:34 +02:00
#ifndef CIB_H
#define CIB_H
2014-05-25 16:23:35 +02:00
#include "icinga/i2-icinga.hpp"
#include "base/ringbuffer.hpp"
#include "base/dictionary.hpp"
#include "base/array.hpp"
2013-03-16 21:18:53 +01:00
2012-06-27 18:43:34 +02:00
namespace icinga
{
struct CheckableCheckStatistics {
2014-02-10 14:56:39 +01:00
double min_latency;
double max_latency;
double avg_latency;
double min_execution_time;
double max_execution_time;
double avg_execution_time;
2014-05-22 09:02:44 +02:00
};
2014-02-10 14:56:39 +01:00
2014-05-22 09:02:44 +02:00
struct ServiceStatistics {
2014-08-17 17:57:20 +02:00
double services_ok;
double services_warning;
double services_critical;
double services_unknown;
double services_pending;
double services_unreachable;
double services_flapping;
double services_in_downtime;
double services_acknowledged;
2014-05-22 09:02:44 +02:00
};
2014-02-10 14:56:39 +01:00
2014-05-22 09:02:44 +02:00
struct HostStatistics {
2014-08-17 17:57:20 +02:00
double hosts_up;
double hosts_down;
double hosts_unreachable;
double hosts_pending;
double hosts_flapping;
double hosts_in_downtime;
double hosts_acknowledged;
2014-05-22 09:02:44 +02:00
};
2014-02-10 14:56:39 +01:00
2012-09-17 13:35:55 +02:00
/**
* Common Information Base class. Holds some statistics (and will likely be
* removed/refactored).
*
* @ingroup icinga
*/
2012-09-10 14:07:32 +02:00
class I2_ICINGA_API CIB
2012-06-27 18:43:34 +02:00
{
public:
static void UpdateActiveHostChecksStatistics(long tv, int num);
static int GetActiveHostChecksStatistics(long timespan);
static void UpdateActiveServiceChecksStatistics(long tv, int num);
static int GetActiveServiceChecksStatistics(long timespan);
static void UpdatePassiveHostChecksStatistics(long tv, int num);
static int GetPassiveHostChecksStatistics(long timespan);
static void UpdatePassiveServiceChecksStatistics(long tv, int num);
static int GetPassiveServiceChecksStatistics(long timespan);
2014-08-17 17:57:20 +02:00
static CheckableCheckStatistics CalculateHostCheckStats(void);
static CheckableCheckStatistics CalculateServiceCheckStats(void);
static HostStatistics CalculateHostStats(void);
static ServiceStatistics CalculateServiceStats(void);
2014-02-10 14:56:39 +01:00
static std::pair<Dictionary::Ptr, Array::Ptr> GetFeatureStats(void);
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
2012-06-27 18:43:34 +02:00
private:
2013-03-14 23:52:52 +01:00
CIB(void);
2013-02-17 19:14:34 +01:00
static boost::mutex m_Mutex;
static RingBuffer m_ActiveHostChecksStatistics;
static RingBuffer m_PassiveHostChecksStatistics;
static RingBuffer m_ActiveServiceChecksStatistics;
static RingBuffer m_PassiveServiceChecksStatistics;
2012-06-27 18:43:34 +02:00
};
}
#endif /* CIB_H */