Alert list in the Event Management dashboard do not reflect the current state of alerts belonging to an Alert Group serviceIssue In the event management dashboard, the alert list that appears below the service tiles is not updated or in sync with the actual alerts that belong to the Alert Group servicesCauseThere is an issue with the Event Management dashboard. The severity of the alert group service returns correctly, however, the problem is that the alert list doesn't refresh and returns old data. This happens only for alert groups, only for cases when the severity of the group hadn't changed and only if there wasn't any change on the alert list (due to other services). ResolutionThe workaround for the issue is to change the alert groups status from operational to non-operational and back. If needed, you can create a scheduled job that does it every minute to all the alert groups. This happens only with the legacy event management dashboard, which will be deprecated starting Orlando release. This does not happen with the new operator workspace, which is available in Orlando for all customers. You can run this script in the scheduled job for flipping the operational status: var gr = new GlideRecord("cmdb_ci_alert_group");gr.addQuery("operational_status", "1");gr.query();while (gr.next()) {gr.setValue("operational_status", "2");gr.update();gr.setValue("operational_status", "1");gr.update();}