mirror of https://github.com/Icinga/icinga2.git
Merge pull request #9010 from Icinga/feature/icingadb-scheduling_source
Make CheckResult#scheduling_source available to Icinga DB
This commit is contained in:
commit
6cf0673c11
|
@ -1597,6 +1597,8 @@ void IcingaDB::SendStateChange(const ConfigObject::Ptr& object, const CheckResul
|
|||
xAdd.emplace_back(Utility::ValidateUTF8(std::move(output)));
|
||||
xAdd.emplace_back("check_source");
|
||||
xAdd.emplace_back(cr->GetCheckSource());
|
||||
xAdd.emplace_back("scheduling_source");
|
||||
xAdd.emplace_back(cr->GetSchedulingSource());
|
||||
}
|
||||
|
||||
if (service) {
|
||||
|
@ -2250,6 +2252,7 @@ Dictionary::Ptr IcingaDB::SerializeState(const Checkable::Ptr& checkable)
|
|||
attrs->Set("execution_time", TimestampToMilliseconds(fmax(0.0, cr->CalculateExecutionTime())));
|
||||
attrs->Set("latency", TimestampToMilliseconds(cr->CalculateLatency()));
|
||||
attrs->Set("check_source", cr->GetCheckSource());
|
||||
attrs->Set("scheduling_source", cr->GetSchedulingSource());
|
||||
}
|
||||
|
||||
attrs->Set("is_problem", checkable->GetProblem());
|
||||
|
|
Loading…
Reference in New Issue