You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui-v2/app/utils/sumOfUnhealthy.js

8 lines
241 B

import { get } from '@ember/object';
export default function(items) {
return items.reduce(function(sum, check) {
const status = get(check, 'Status');
return status === 'critical' || status === 'warning' ? sum + 1 : sum;
}, 0);
}