2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-05-10 12:06:41 +02:00
|
|
|
|
2013-09-25 07:31:46 +02:00
|
|
|
#ifndef STATUSDATAWRITER_H
|
|
|
|
#define STATUSDATAWRITER_H
|
2012-04-24 07:16:34 +02:00
|
|
|
|
2018-01-18 13:50:38 +01:00
|
|
|
#include "compat/statusdatawriter-ti.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
|
|
|
#include "icinga/host.hpp"
|
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "icinga/command.hpp"
|
|
|
|
#include "icinga/compatutility.hpp"
|
|
|
|
#include "base/timer.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2013-03-17 20:19:29 +01:00
|
|
|
#include <iostream>
|
2013-03-16 21:18:53 +01:00
|
|
|
|
2012-04-24 07:16:34 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-05-15 16:24:04 +02:00
|
|
|
/**
|
2012-06-27 18:43:34 +02:00
|
|
|
* @ingroup compat
|
2012-05-15 16:24:04 +02:00
|
|
|
*/
|
2018-01-04 06:11:04 +01:00
|
|
|
class StatusDataWriter final : public ObjectImpl<StatusDataWriter>
|
2012-04-24 07:16:34 +02:00
|
|
|
{
|
2012-06-27 18:43:34 +02:00
|
|
|
public:
|
2014-11-03 00:44:04 +01:00
|
|
|
DECLARE_OBJECT(StatusDataWriter);
|
|
|
|
DECLARE_OBJECTNAME(StatusDataWriter);
|
2013-07-09 08:42:08 +02:00
|
|
|
|
2015-02-07 22:36:17 +01:00
|
|
|
static void StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata);
|
2014-02-17 16:34:18 +01:00
|
|
|
|
2013-08-20 11:06:04 +02:00
|
|
|
protected:
|
2018-01-04 05:12:56 +01:00
|
|
|
void Start(bool runtimeCreated) override;
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2012-06-27 18:43:34 +02:00
|
|
|
|
|
|
|
private:
|
2013-01-22 08:47:56 +01:00
|
|
|
Timer::Ptr m_StatusTimer;
|
2015-09-22 11:56:27 +02:00
|
|
|
bool m_ObjectsCacheOutdated;
|
2013-01-22 08:47:56 +01:00
|
|
|
|
2013-07-02 08:44:03 +02:00
|
|
|
void DumpCommand(std::ostream& fp, const Command::Ptr& command);
|
|
|
|
void DumpTimePeriod(std::ostream& fp, const TimePeriod::Ptr& tp);
|
2014-04-03 15:36:13 +02:00
|
|
|
void DumpDowntimes(std::ostream& fp, const Checkable::Ptr& owner);
|
|
|
|
void DumpComments(std::ostream& fp, const Checkable::Ptr& owner);
|
2013-03-16 21:18:53 +01:00
|
|
|
void DumpHostStatus(std::ostream& fp, const Host::Ptr& host);
|
|
|
|
void DumpHostObject(std::ostream& fp, const Host::Ptr& host);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2014-04-03 15:36:13 +02:00
|
|
|
void DumpCheckableStatusAttrs(std::ostream& fp, const Checkable::Ptr& checkable);
|
2013-02-07 20:29:35 +01:00
|
|
|
|
2013-01-24 13:21:35 +01:00
|
|
|
template<typename T>
|
2013-03-17 20:19:29 +01:00
|
|
|
void DumpNameList(std::ostream& fp, const T& list)
|
2013-01-24 13:21:35 +01:00
|
|
|
{
|
|
|
|
bool first = true;
|
2016-08-27 08:33:15 +02:00
|
|
|
for (const auto& obj : list) {
|
2013-01-24 13:21:35 +01:00
|
|
|
if (!first)
|
|
|
|
fp << ",";
|
|
|
|
else
|
|
|
|
first = false;
|
|
|
|
|
2016-08-27 08:33:15 +02:00
|
|
|
fp << obj->GetName();
|
2013-01-24 13:21:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-09 12:44:31 +02:00
|
|
|
template<typename T>
|
2013-03-17 20:19:29 +01:00
|
|
|
void DumpStringList(std::ostream& fp, const T& list)
|
2012-07-09 12:44:31 +02:00
|
|
|
{
|
|
|
|
bool first = true;
|
2016-08-27 08:33:15 +02:00
|
|
|
for (const auto& str : list) {
|
2012-07-09 12:44:31 +02:00
|
|
|
if (!first)
|
|
|
|
fp << ",";
|
|
|
|
else
|
|
|
|
first = false;
|
|
|
|
|
2016-08-27 08:33:15 +02:00
|
|
|
fp << str;
|
2012-07-09 12:44:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-16 21:18:53 +01:00
|
|
|
void DumpServiceStatus(std::ostream& fp, const Service::Ptr& service);
|
|
|
|
void DumpServiceObject(std::ostream& fp, const Service::Ptr& service);
|
2012-06-27 18:43:34 +02:00
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
void DumpCustomAttributes(std::ostream& fp, const CustomVarObject::Ptr& object);
|
2013-07-01 13:46:50 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
void UpdateObjectsCache();
|
|
|
|
void StatusTimerHandler();
|
|
|
|
void ObjectHandler();
|
2017-12-06 17:17:47 +01:00
|
|
|
|
|
|
|
static String GetNotificationOptions(const Checkable::Ptr& checkable);
|
2012-04-24 07:16:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-09-25 07:31:46 +02:00
|
|
|
#endif /* STATUSDATAWRITER_H */
|