mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-23 13:45:04 +02:00
IcingaDB: Add _name
suffix to columns referring to name
This commit is contained in:
parent
b3d447fd49
commit
7e12927b8a
@ -1225,7 +1225,7 @@ bool IcingaDB::PrepareObject(const ConfigObject::Ptr& object, Dictionary::Ptr& a
|
|||||||
|
|
||||||
if (ObjectsZone) {
|
if (ObjectsZone) {
|
||||||
attributes->Set("zone_id", GetObjectIdentifier(ObjectsZone));
|
attributes->Set("zone_id", GetObjectIdentifier(ObjectsZone));
|
||||||
attributes->Set("zone", ObjectsZone->GetName());
|
attributes->Set("zone_name", ObjectsZone->GetName());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (type == Endpoint::TypeInstance) {
|
if (type == Endpoint::TypeInstance) {
|
||||||
@ -1251,7 +1251,7 @@ bool IcingaDB::PrepareObject(const ConfigObject::Ptr& object, Dictionary::Ptr& a
|
|||||||
if (type == Host::TypeInstance || type == Service::TypeInstance) {
|
if (type == Host::TypeInstance || type == Service::TypeInstance) {
|
||||||
Checkable::Ptr checkable = static_pointer_cast<Checkable>(object);
|
Checkable::Ptr checkable = static_pointer_cast<Checkable>(object);
|
||||||
|
|
||||||
attributes->Set("checkcommand", checkable->GetCheckCommand()->GetName());
|
attributes->Set("checkcommand_name", checkable->GetCheckCommand()->GetName());
|
||||||
attributes->Set("max_check_attempts", checkable->GetMaxCheckAttempts());
|
attributes->Set("max_check_attempts", checkable->GetMaxCheckAttempts());
|
||||||
attributes->Set("check_timeout", checkable->GetCheckTimeout());
|
attributes->Set("check_timeout", checkable->GetCheckTimeout());
|
||||||
attributes->Set("check_interval", checkable->GetCheckInterval());
|
attributes->Set("check_interval", checkable->GetCheckInterval());
|
||||||
@ -1273,19 +1273,19 @@ bool IcingaDB::PrepareObject(const ConfigObject::Ptr& object, Dictionary::Ptr& a
|
|||||||
Endpoint::Ptr commandEndpoint = checkable->GetCommandEndpoint();
|
Endpoint::Ptr commandEndpoint = checkable->GetCommandEndpoint();
|
||||||
if (commandEndpoint) {
|
if (commandEndpoint) {
|
||||||
attributes->Set("command_endpoint_id", GetObjectIdentifier(commandEndpoint));
|
attributes->Set("command_endpoint_id", GetObjectIdentifier(commandEndpoint));
|
||||||
attributes->Set("command_endpoint", commandEndpoint->GetName());
|
attributes->Set("command_endpoint_name", commandEndpoint->GetName());
|
||||||
}
|
}
|
||||||
|
|
||||||
TimePeriod::Ptr timePeriod = checkable->GetCheckPeriod();
|
TimePeriod::Ptr timePeriod = checkable->GetCheckPeriod();
|
||||||
if (timePeriod) {
|
if (timePeriod) {
|
||||||
attributes->Set("check_timeperiod_id", GetObjectIdentifier(timePeriod));
|
attributes->Set("check_timeperiod_id", GetObjectIdentifier(timePeriod));
|
||||||
attributes->Set("check_timeperiod", timePeriod->GetName());
|
attributes->Set("check_timeperiod_name", timePeriod->GetName());
|
||||||
}
|
}
|
||||||
|
|
||||||
EventCommand::Ptr eventCommand = checkable->GetEventCommand();
|
EventCommand::Ptr eventCommand = checkable->GetEventCommand();
|
||||||
if (eventCommand) {
|
if (eventCommand) {
|
||||||
attributes->Set("eventcommand_id", GetObjectIdentifier(eventCommand));
|
attributes->Set("eventcommand_id", GetObjectIdentifier(eventCommand));
|
||||||
attributes->Set("eventcommand", eventCommand->GetName());
|
attributes->Set("eventcommand_name", eventCommand->GetName());
|
||||||
}
|
}
|
||||||
|
|
||||||
String actionUrl = checkable->GetActionUrl();
|
String actionUrl = checkable->GetActionUrl();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user