Merge pull request #4022 from Icinga/fix/problem-dashlets-not-showing-all-acks-3988

Also consider normal acknowledgements for acknowledged problems
This commit is contained in:
Johannes Meyer 2019-12-09 08:59:58 +01:00 committed by GitHub
commit 0cf7706ce4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -389,12 +389,12 @@ $dashboard->add(
); );
$dashboard->add( $dashboard->add(
N_('Acknowledged Problem Services'), N_('Acknowledged Problem Services'),
'monitoring/list/services?service_acknowledgement_type=2&service_problem=1&sort=service_state&limit=10', 'monitoring/list/services?service_acknowledgement_type!=0&service_problem=1&sort=service_state&limit=10',
140 140
); );
$dashboard->add( $dashboard->add(
N_('Acknowledged Problem Hosts'), N_('Acknowledged Problem Hosts'),
'monitoring/list/hosts?host_acknowledgement_type=2&host_problem=1&sort=host_severity&limit=10', 'monitoring/list/hosts?host_acknowledgement_type!=0&host_problem=1&sort=host_severity&limit=10',
150 150
); );