Livestatus: Add zone object table w/ endpoint members

refs #9286
This commit is contained in:
Michael Friedrich 2015-07-14 18:08:55 +02:00
parent a788de679c
commit 769594fa4f
7 changed files with 203 additions and 2 deletions

View File

@ -214,7 +214,7 @@ Additional global custom variables populated from 'Vars' constant (object_id is
Icinga 2 specific extensions are shown below:
New table: `endpoints`
New table: `endpoints`:
Table | Column
----------|--------------
@ -222,6 +222,16 @@ New table: `endpoints`
endpoints | identity
endpoints | node
endpoints | is_connected
endpoints | zone
New table: `zones`:
Table | Column
----------|--------------
zone | name
zone | endpoints
zone | parent
zone | global
New columns:

View File

@ -28,7 +28,7 @@ set(livestatus_SOURCES
minaggregator.cpp negatefilter.cpp orfilter.cpp
servicegroupstable.cpp servicestable.cpp statehisttable.cpp
statustable.cpp stdaggregator.cpp sumaggregator.cpp table.cpp
timeperiodstable.cpp
timeperiodstable.cpp zonestable.cpp
)
if(ICINGA2_UNITY_BUILD)

View File

@ -22,6 +22,7 @@
#include "icinga/service.hpp"
#include "icinga/icingaapplication.hpp"
#include "remote/endpoint.hpp"
#include "remote/zone.hpp"
#include "base/dynamictype.hpp"
#include "base/objectlock.hpp"
#include "base/convert.hpp"
@ -46,6 +47,7 @@ void EndpointsTable::AddColumns(Table *table, const String& prefix,
table->AddColumn(prefix + "identity", Column(&EndpointsTable::IdentityAccessor, objectAccessor));
table->AddColumn(prefix + "node", Column(&EndpointsTable::NodeAccessor, objectAccessor));
table->AddColumn(prefix + "is_connected", Column(&EndpointsTable::IsConnectedAccessor, objectAccessor));
table->AddColumn(prefix + "zone", Column(&EndpointsTable::ZoneAccessor, objectAccessor));
}
String EndpointsTable::GetName(void) const
@ -111,3 +113,18 @@ Value EndpointsTable::IsConnectedAccessor(const Value& row)
return is_connected;
}
Value EndpointsTable::ZoneAccessor(const Value& row)
{
Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
if (!endpoint)
return Empty;
Zone::Ptr zone = endpoint->GetZone();
if (!zone)
return Empty;
return zone->GetName();
}

View File

@ -50,6 +50,7 @@ protected:
static Value IdentityAccessor(const Value& row);
static Value NodeAccessor(const Value& row);
static Value IsConnectedAccessor(const Value& row);
static Value ZoneAccessor(const Value& row);
};
}

View File

@ -29,6 +29,7 @@
#include "livestatus/commentstable.hpp"
#include "livestatus/downtimestable.hpp"
#include "livestatus/endpointstable.hpp"
#include "livestatus/zonestable.hpp"
#include "livestatus/timeperiodstable.hpp"
#include "livestatus/logtable.hpp"
#include "livestatus/statehisttable.hpp"
@ -82,6 +83,8 @@ Table::Ptr Table::GetByName(const String& name, const String& compat_log_path, c
return new StateHistTable(compat_log_path, from, until);
else if (name == "endpoints")
return new EndpointsTable();
else if (name == "zones")
return new ZonesTable();
return Table::Ptr();
}

View File

@ -0,0 +1,113 @@
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* 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. *
******************************************************************************/
#include "livestatus/zonestable.hpp"
#include "remote/zone.hpp"
#include "base/dynamictype.hpp"
#include <boost/foreach.hpp>
using namespace icinga;
ZonesTable::ZonesTable(void)
{
AddColumns(this);
}
void ZonesTable::AddColumns(Table *table, const String& prefix,
const Column::ObjectAccessor& objectAccessor)
{
table->AddColumn(prefix + "name", Column(&ZonesTable::NameAccessor, objectAccessor));
table->AddColumn(prefix + "parent", Column(&ZonesTable::ParentAccessor, objectAccessor));
table->AddColumn(prefix + "endpoints", Column(&ZonesTable::EndpointsAccessor, objectAccessor));
table->AddColumn(prefix + "global", Column(&ZonesTable::GlobalAccessor, objectAccessor));
}
String ZonesTable::GetName(void) const
{
return "zones";
}
String ZonesTable::GetPrefix(void) const
{
return "zone";
}
void ZonesTable::FetchRows(const AddRowFunction& addRowFn)
{
BOOST_FOREACH(const Zone::Ptr& zone, DynamicType::GetObjectsByType<Zone>()) {
if (!addRowFn(zone, LivestatusGroupByNone, Empty))
return;
}
}
Value ZonesTable::NameAccessor(const Value& row)
{
Zone::Ptr zone = static_cast<Zone::Ptr>(row);
if (!zone)
return Empty;
return zone->GetName();
}
Value ZonesTable::ParentAccessor(const Value& row)
{
Zone::Ptr zone = static_cast<Zone::Ptr>(row);
if (!zone)
return Empty;
Zone::Ptr parent_zone = zone->GetParent();
if (!parent_zone)
return Empty;
return parent_zone->GetName();
}
Value ZonesTable::EndpointsAccessor(const Value& row)
{
Zone::Ptr zone = static_cast<Zone::Ptr>(row);
if (!zone)
return Empty;
std::set<Endpoint::Ptr> endpoints = zone->GetEndpoints();
Array::Ptr endpoint_names = new Array();
BOOST_FOREACH(const Endpoint::Ptr endpoint, endpoints) {
endpoint_names->Add(endpoint->GetName());
}
if (!endpoint_names)
return Empty;
return endpoint_names;
}
Value ZonesTable::GlobalAccessor(const Value& row)
{
Zone::Ptr zone = static_cast<Zone::Ptr>(row);
if (!zone)
return Empty;
return zone->GetGlobal() ? 1 : 0;
}

View File

@ -0,0 +1,57 @@
/******************************************************************************
* Icinga 2 *
* Copyright (C) 2012-2015 Icinga Development Team (http://www.icinga.org) *
* *
* 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. *
******************************************************************************/
#ifndef ZONESTABLE_H
#define ZONESTABLE_H
#include "livestatus/table.hpp"
using namespace icinga;
namespace icinga
{
/**
* @ingroup livestatus
*/
class I2_LIVESTATUS_API ZonesTable : public Table
{
public:
DECLARE_PTR_TYPEDEFS(ZonesTable);
ZonesTable(void);
static void AddColumns(Table *table, const String& prefix = String(),
const Column::ObjectAccessor& objectAccessor = Column::ObjectAccessor());
virtual String GetName(void) const;
virtual String GetPrefix(void) const;
protected:
virtual void FetchRows(const AddRowFunction& addRowFn);
static Value NameAccessor(const Value& row);
static Value ParentAccessor(const Value& row);
static Value EndpointsAccessor(const Value& row);
static Value GlobalAccessor(const Value& row);
};
}
#endif /* ZONESTABLE_H */