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