2014-10-17 19:44:31 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2015-01-22 12:00:23 +01:00
|
|
|
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
|
2014-10-17 19:44:31 +02:00
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "icinga/customvarobject.hpp"
|
2013-10-26 09:41:45 +02:00
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2014-04-05 22:17:20 +02:00
|
|
|
code {{{
|
2014-04-06 08:09:49 +02:00
|
|
|
class I2_ICINGA_API NotificationNameComposer : public NameComposer
|
2014-04-05 22:17:20 +02:00
|
|
|
{
|
|
|
|
public:
|
2014-11-06 19:35:47 +01:00
|
|
|
virtual String MakeName(const String& shortName, const Object::Ptr& context) const;
|
2014-04-05 22:17:20 +02:00
|
|
|
};
|
|
|
|
}}}
|
|
|
|
|
2014-05-12 16:45:25 +02:00
|
|
|
class Notification : CustomVarObject < NotificationNameComposer
|
2013-10-26 09:41:45 +02:00
|
|
|
{
|
2015-02-25 12:43:03 +01:00
|
|
|
load_after Host;
|
|
|
|
load_after Service;
|
|
|
|
|
2014-04-09 10:25:23 +02:00
|
|
|
[config, protected] String command (CommandRaw);
|
|
|
|
[config] double interval {
|
2014-04-09 06:49:55 +02:00
|
|
|
default {{{ return 1800; }}}
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
2014-04-09 10:25:23 +02:00
|
|
|
[config] String period (PeriodRaw);
|
2013-10-26 09:41:45 +02:00
|
|
|
[config, protected] Array::Ptr users (UsersRaw);
|
|
|
|
[config, protected] Array::Ptr user_groups (UserGroupsRaw);
|
|
|
|
[config] Dictionary::Ptr times;
|
2014-04-09 10:25:23 +02:00
|
|
|
[config] Array::Ptr types;
|
|
|
|
int type_filter_real (TypeFilter);
|
|
|
|
[config] Array::Ptr states;
|
|
|
|
int state_filter_real (StateFilter);
|
2014-04-05 09:15:40 +02:00
|
|
|
[config, protected] String host_name;
|
|
|
|
[config, protected] String service_name;
|
2013-10-26 09:41:45 +02:00
|
|
|
|
2014-11-12 20:32:34 +01:00
|
|
|
[state] Array::Ptr notified_users {
|
|
|
|
default {{{ return new Array(); }}}
|
|
|
|
};
|
|
|
|
|
2013-10-26 09:41:45 +02:00
|
|
|
[state] double last_notification;
|
|
|
|
[state, set_protected] double next_notification (NextNotificationRaw);
|
|
|
|
[state, set_protected] Value notification_number;
|
2013-11-06 08:36:22 +01:00
|
|
|
[state] double last_problem_notification;
|
2014-11-13 11:23:57 +01:00
|
|
|
|
|
|
|
[config] String command_endpoint (CommandEndpointRaw);
|
2013-10-26 09:41:45 +02:00
|
|
|
};
|
|
|
|
|
2013-11-06 08:36:22 +01:00
|
|
|
}
|