| 29 | { } |
| 30 | |
| 31 | Dictionary::Ptr EndpointDbObject::GetConfigFields() const |
| 32 | { |
| 33 | Endpoint::Ptr endpoint = static_pointer_cast<Endpoint>(GetObject()); |
| 34 | |
| 35 | return new Dictionary({ |
| 36 | { "identity", endpoint->GetName() }, |
| 37 | { "node", IcingaApplication::GetInstance()->GetNodeName() }, |
| 38 | { "zone_object_id", endpoint->GetZone() } |
| 39 | }); |
| 40 | } |
| 41 | |
| 42 | Dictionary::Ptr EndpointDbObject::GetStatusFields() const |
| 43 | { |
nothing calls this directly
no test coverage detected