monitoring: Add sort rule for total services to the host group summary

refs #8241
This commit is contained in:
Eric Lippmann 2015-05-21 12:37:53 +02:00
parent 4b9f7eb910
commit 73eb8cc805
1 changed files with 7 additions and 0 deletions

View File

@ -88,6 +88,13 @@ class Hostgroupsummary extends DataView
'hostgroup_alias ASC'
),
'order' => self::SORT_ASC
),
'services_total' => array(
'columns' => array(
'services_total',
'hostgroup_alias ASC'
),
'order' => self::SORT_ASC
)
);
}