1
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.
 
 
 
 
 
 

47 lines
1.6 KiB

import { useMemo } from 'react';
import { AlertmanagerGroup } from 'app/plugins/datasource/alertmanager/types';
import { Labels } from '@grafana/data';
export const useGroupedAlerts = (groups: AlertmanagerGroup[], groupBy: string[]) => {
return useMemo(() => {
if (groupBy.length === 0) {
return groups;
}
const alerts = groups.flatMap(({ alerts }) => alerts);
return alerts.reduce((groupings, alert) => {
const alertContainsGroupings = groupBy.every((groupByLabel) => Object.keys(alert.labels).includes(groupByLabel));
if (alertContainsGroupings) {
const existingGrouping = groupings.find((group) => {
return groupBy.every((groupKey) => {
return group.labels[groupKey] === alert.labels[groupKey];
});
});
if (!existingGrouping) {
const labels = groupBy.reduce((acc, key) => {
acc = { ...acc, [key]: alert.labels[key] };
return acc;
}, {} as Labels);
groupings.push({
alerts: [alert],
labels,
receiver: {
name: 'NONE',
},
});
} else {
existingGrouping.alerts.push(alert);
}
} else {
const noGroupingGroup = groupings.find((group) => Object.keys(group.labels).length === 0);
if (!noGroupingGroup) {
groupings.push({ alerts: [alert], labels: {}, receiver: { name: 'NONE' } });
} else {
noGroupingGroup.alerts.push(alert);
}
}
return groupings;
}, [] as AlertmanagerGroup[]);
}, [groups, groupBy]);
};