2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-02-07 15:08:16 -05:00
|
|
|
|
|
|
|
|
#ifndef NOTIFICATIONCOMPONENT_H
|
|
|
|
|
#define NOTIFICATIONCOMPONENT_H
|
|
|
|
|
|
2018-01-18 07:50:38 -05:00
|
|
|
#include "notification/notificationcomponent-ti.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "icinga/service.hpp"
|
2015-08-15 14:28:05 -04:00
|
|
|
#include "base/configobject.hpp"
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/timer.hpp"
|
2013-03-17 15:19:29 -04:00
|
|
|
|
2013-02-07 15:08:16 -05:00
|
|
|
namespace icinga
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup notification
|
|
|
|
|
*/
|
2018-01-04 00:11:04 -05:00
|
|
|
class NotificationComponent final : public ObjectImpl<NotificationComponent>
|
2013-02-07 15:08:16 -05:00
|
|
|
{
|
|
|
|
|
public:
|
2014-11-02 18:44:04 -05:00
|
|
|
DECLARE_OBJECT(NotificationComponent);
|
|
|
|
|
DECLARE_OBJECTNAME(NotificationComponent);
|
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
|
|
|
|
2018-01-03 23:12:56 -05:00
|
|
|
void Start(bool runtimeCreated) override;
|
|
|
|
|
void Stop(bool runtimeRemoved) override;
|
2013-02-07 15:08:16 -05:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
Timer::Ptr m_NotificationTimer;
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
void NotificationTimerHandler();
|
2014-04-03 09:36:13 -04:00
|
|
|
void SendNotificationsHandler(const Checkable::Ptr& checkable, NotificationType type,
|
2017-12-19 09:50:05 -05:00
|
|
|
const CheckResult::Ptr& cr, const String& author, const String& text);
|
2013-02-07 15:08:16 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* NOTIFICATIONCOMPONENT_H */
|