2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-03-20 18:53:08 +01:00
|
|
|
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "livestatus/endpointstable.hpp"
|
|
|
|
#include "icinga/host.hpp"
|
|
|
|
#include "icinga/service.hpp"
|
|
|
|
#include "icinga/icingaapplication.hpp"
|
|
|
|
#include "remote/endpoint.hpp"
|
2015-07-14 18:08:55 +02:00
|
|
|
#include "remote/zone.hpp"
|
2015-08-15 20:28:05 +02:00
|
|
|
#include "base/configtype.hpp"
|
2014-05-25 16:23:35 +02:00
|
|
|
#include "base/objectlock.hpp"
|
|
|
|
#include "base/convert.hpp"
|
|
|
|
#include "base/utility.hpp"
|
2014-03-20 18:53:08 +01:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
EndpointsTable::EndpointsTable()
|
2014-03-20 18:53:08 +01:00
|
|
|
{
|
|
|
|
AddColumns(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EndpointsTable::AddColumns(Table *table, const String& prefix,
|
2017-12-19 15:50:05 +01:00
|
|
|
const Column::ObjectAccessor& objectAccessor)
|
2014-03-20 18:53:08 +01:00
|
|
|
{
|
|
|
|
table->AddColumn(prefix + "name", Column(&EndpointsTable::NameAccessor, objectAccessor));
|
|
|
|
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));
|
2015-07-14 18:08:55 +02:00
|
|
|
table->AddColumn(prefix + "zone", Column(&EndpointsTable::ZoneAccessor, objectAccessor));
|
2014-03-20 18:53:08 +01:00
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String EndpointsTable::GetName() const
|
2014-03-20 18:53:08 +01:00
|
|
|
{
|
|
|
|
return "endpoints";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String EndpointsTable::GetPrefix() const
|
2014-06-25 11:30:27 +02:00
|
|
|
{
|
|
|
|
return "endpoint";
|
|
|
|
}
|
|
|
|
|
2014-03-20 18:53:08 +01:00
|
|
|
void EndpointsTable::FetchRows(const AddRowFunction& addRowFn)
|
|
|
|
{
|
2016-08-25 06:19:44 +02:00
|
|
|
for (const Endpoint::Ptr& endpoint : ConfigType::GetObjectsByType<Endpoint>()) {
|
2015-03-04 12:03:35 +01:00
|
|
|
if (!addRowFn(endpoint, LivestatusGroupByNone, Empty))
|
|
|
|
return;
|
2014-03-20 18:53:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Value EndpointsTable::NameAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
|
|
|
|
|
|
|
|
if (!endpoint)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return endpoint->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value EndpointsTable::IdentityAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
|
|
|
|
|
|
|
|
if (!endpoint)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return endpoint->GetName();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value EndpointsTable::NodeAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
|
|
|
|
|
|
|
|
if (!endpoint)
|
|
|
|
return Empty;
|
|
|
|
|
|
|
|
return IcingaApplication::GetInstance()->GetNodeName();
|
|
|
|
}
|
|
|
|
|
|
|
|
Value EndpointsTable::IsConnectedAccessor(const Value& row)
|
|
|
|
{
|
|
|
|
Endpoint::Ptr endpoint = static_cast<Endpoint::Ptr>(row);
|
|
|
|
|
|
|
|
if (!endpoint)
|
|
|
|
return Empty;
|
|
|
|
|
2015-10-22 10:52:38 +02:00
|
|
|
unsigned int is_connected = endpoint->GetConnected() ? 1 : 0;
|
2014-03-20 18:53:08 +01:00
|
|
|
|
|
|
|
/* if identity is equal to node, fake is_connected */
|
|
|
|
if (endpoint->GetName() == IcingaApplication::GetInstance()->GetNodeName())
|
|
|
|
is_connected = 1;
|
|
|
|
|
|
|
|
return is_connected;
|
|
|
|
}
|
2015-07-14 18:08:55 +02:00
|
|
|
|
|
|
|
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();
|
|
|
|
}
|