monitoring: Fix unhandled service counter in the hosts overview
Group by was wrong. fixes #10490
This commit is contained in:
parent
b5c8579d0e
commit
ba55ad7c5a
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue