blob: b3c60c4930de5cd3192a6560fb2a3d7a2fe8f511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef SERVICEGROUPSTABLE_H
#define SERVICEGROUPSTABLE_H
#include "livestatus/table.hpp"
using namespace icinga;
namespace icinga
{
/**
* @ingroup livestatus
*/
class ServiceGroupsTable final : public Table
{
public:
DECLARE_PTR_TYPEDEFS(ServiceGroupsTable);
ServiceGroupsTable();
static void AddColumns(Table *table, const String& prefix = String(),
const Column::ObjectAccessor& objectAccessor = Column::ObjectAccessor());
String GetName() const override;
String GetPrefix() const override;
protected:
void FetchRows(const AddRowFunction& addRowFn) override;
static Value NameAccessor(const Value& row);
static Value AliasAccessor(const Value& row);
static Value NotesAccessor(const Value& row);
static Value NotesUrlAccessor(const Value& row);
static Value ActionUrlAccessor(const Value& row);
static Value MembersAccessor(const Value& row);
static Value MembersWithStateAccessor(const Value& row);
static Value WorstServiceStateAccessor(const Value& row);
static Value NumServicesAccessor(const Value& row);
static Value NumServicesOkAccessor(const Value& row);
static Value NumServicesWarnAccessor(const Value& row);
static Value NumServicesCritAccessor(const Value& row);
static Value NumServicesUnknownAccessor(const Value& row);
static Value NumServicesPendingAccessor(const Value& row);
static Value NumServicesHardOkAccessor(const Value& row);
static Value NumServicesHardWarnAccessor(const Value& row);
static Value NumServicesHardCritAccessor(const Value& row);
static Value NumServicesHardUnknownAccessor(const Value& row);
};
}
#endif /* SERVICEGROUPSTABLE_H */
|