]> granicus.if.org Git - icinga2/blob - lib/icinga/hostgroup.ti
Correct current_concurrent_checks to actually running checks
[icinga2] / lib / icinga / hostgroup.ti
1 /* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2
3 #include "icinga/customvarobject.hpp"
4
5 library icinga;
6
7 namespace icinga
8 {
9
10 class HostGroup : CustomVarObject
11 {
12         [config] String display_name {
13                 get {{{
14                         if (m_DisplayName.IsEmpty())
15                                 return GetName();
16                         else
17                                 return m_DisplayName;
18                 }}}
19         };
20
21         [config, no_user_modify] array(name(HostGroup)) groups;
22         [config] String notes;
23         [config] String notes_url;
24         [config] String action_url;
25 };
26
27 }