mirror of
https://github.com/Icinga/icinga2.git
synced 2025-07-26 07:04:37 +02:00
Merge pull request #10359 from Icinga/do-not-publish-useless-stats
IcingaDB: Don't publish useless data to Redis
This commit is contained in:
commit
206d7cda1b
@ -12,42 +12,15 @@ using namespace icinga;
|
|||||||
|
|
||||||
Dictionary::Ptr IcingaDB::GetStats()
|
Dictionary::Ptr IcingaDB::GetStats()
|
||||||
{
|
{
|
||||||
Dictionary::Ptr stats = new Dictionary();
|
|
||||||
|
|
||||||
//TODO: Figure out if more stats can be useful here.
|
|
||||||
Namespace::Ptr statsFunctions = ScriptGlobal::Get("StatsFunctions", &Empty);
|
|
||||||
|
|
||||||
if (!statsFunctions)
|
|
||||||
Dictionary::Ptr();
|
|
||||||
|
|
||||||
ObjectLock olock(statsFunctions);
|
|
||||||
|
|
||||||
for (auto& kv : statsFunctions)
|
|
||||||
{
|
|
||||||
Function::Ptr func = kv.second.Val;
|
|
||||||
|
|
||||||
if (!func)
|
|
||||||
BOOST_THROW_EXCEPTION(std::invalid_argument("Invalid status function name."));
|
|
||||||
|
|
||||||
Dictionary::Ptr status = new Dictionary();
|
Dictionary::Ptr status = new Dictionary();
|
||||||
Array::Ptr perfdata = new Array();
|
IcingaApplication::StatsFunc(status, nullptr);
|
||||||
func->Invoke({ status, perfdata });
|
|
||||||
|
|
||||||
stats->Set(kv.first, new Dictionary({
|
|
||||||
{ "status", status },
|
|
||||||
{ "perfdata", Serialize(perfdata, FAState) }
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
|
|
||||||
typedef Dictionary::Ptr DP;
|
|
||||||
DP app = DP(DP(DP(stats->Get("IcingaApplication"))->Get("status"))->Get("icingaapplication"))->Get("app");
|
|
||||||
|
|
||||||
|
Dictionary::Ptr app(Dictionary::Ptr(status->Get("icingaapplication"))->Get("app"));
|
||||||
app->Set("program_start", TimestampToMilliseconds(Application::GetStartTime()));
|
app->Set("program_start", TimestampToMilliseconds(Application::GetStartTime()));
|
||||||
|
|
||||||
auto localEndpoint (Endpoint::GetLocalEndpoint());
|
if (auto localEndpoint(Endpoint::GetLocalEndpoint()); localEndpoint) {
|
||||||
if (localEndpoint) {
|
|
||||||
app->Set("endpoint_id", GetObjectIdentifier(localEndpoint));
|
app->Set("endpoint_id", GetObjectIdentifier(localEndpoint));
|
||||||
}
|
}
|
||||||
|
|
||||||
return stats;
|
return new Dictionary{{ "IcingaApplication", new Dictionary{{"status", status}}}};
|
||||||
}
|
}
|
||||||
|
@ -143,7 +143,7 @@ private:
|
|||||||
Dictionary::Ptr SerializeState(const Checkable::Ptr& checkable);
|
Dictionary::Ptr SerializeState(const Checkable::Ptr& checkable);
|
||||||
|
|
||||||
/* Stats */
|
/* Stats */
|
||||||
Dictionary::Ptr GetStats();
|
static Dictionary::Ptr GetStats();
|
||||||
|
|
||||||
/* utilities */
|
/* utilities */
|
||||||
static String FormatCheckSumBinary(const String& str);
|
static String FormatCheckSumBinary(const String& str);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user