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