IcingaDB#GetStats(): add endpoint_id to IcingaApplication

This commit is contained in:
Alexander A. Klimov 2019-12-02 14:46:10 +01:00
parent ce4409d1d2
commit e109063333
1 changed files with 9 additions and 0 deletions

View File

@ -38,6 +38,15 @@ Dictionary::Ptr IcingaDB::GetStats()
}));
}
auto localEndpoint (Endpoint::GetLocalEndpoint());
if (localEndpoint) {
typedef Dictionary::Ptr DP;
DP(DP(DP(DP(stats->Get("IcingaApplication"))->Get("status"))->Get("icingaapplication"))->Get("app"))
->Set("endpoint_id", GetObjectIdentifier(localEndpoint));
}
return stats;
}