monitoring: Fix unhandled service counter in the hosts overview

Group by was wrong.

fixes #10490
This commit is contained in:
Eric Lippmann 2015-11-03 17:17:27 +01:00
parent b5c8579d0e
commit ba55ad7c5a
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ class HostserviceproblemsummaryQuery extends IdoQuery
's.service_object_id = so.object_id AND so.is_active = 1',
array()
);
$this->select->group(array('so.object_id'));
$this->select->group(array('s.host_object_id'));
$this->joinedVirtualTables['services'] = true;
}