mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
75 lines
2.3 KiB
TypeScript
75 lines
2.3 KiB
TypeScript
import { isEmpty, uniq } from 'lodash';
|
|
import React, { useEffect, useMemo } from 'react';
|
|
|
|
import { SelectableValue } from '@grafana/data';
|
|
import { Icon, MultiSelect } from '@grafana/ui';
|
|
import { useUnifiedAlertingSelector } from 'app/features/alerting/unified/hooks/useUnifiedAlertingSelector';
|
|
import { fetchAllPromRulesAction } from 'app/features/alerting/unified/state/actions';
|
|
import {
|
|
isAsyncRequestMapSlicePending,
|
|
isAsyncRequestMapSliceSettled,
|
|
} from 'app/features/alerting/unified/utils/redux';
|
|
import { useDispatch } from 'app/types';
|
|
import { AlertingRule } from 'app/types/unified-alerting';
|
|
import { PromRuleType } from 'app/types/unified-alerting-dto';
|
|
|
|
import { isPrivateLabel } from './util';
|
|
|
|
interface Props {
|
|
id: string;
|
|
defaultValue: SelectableValue<string>;
|
|
onChange: (keys: string[]) => void;
|
|
}
|
|
|
|
export const GroupBy = (props: Props) => {
|
|
const { onChange, id, defaultValue } = props;
|
|
const dispatch = useDispatch();
|
|
|
|
useEffect(() => {
|
|
dispatch(fetchAllPromRulesAction());
|
|
}, [dispatch]);
|
|
|
|
const promRulesByDatasource = useUnifiedAlertingSelector((state) => state.promRules);
|
|
|
|
const allRequestsReady = isAsyncRequestMapSliceSettled(promRulesByDatasource);
|
|
const loading = isAsyncRequestMapSlicePending(promRulesByDatasource);
|
|
|
|
const labels = useMemo(() => {
|
|
if (isEmpty(promRulesByDatasource)) {
|
|
return [];
|
|
}
|
|
|
|
if (!allRequestsReady) {
|
|
return [];
|
|
}
|
|
|
|
const allLabels = Object.keys(promRulesByDatasource)
|
|
.flatMap((datasource) => promRulesByDatasource[datasource].result ?? [])
|
|
.flatMap((rules) => rules.groups)
|
|
.flatMap((group) => group.rules.filter((rule): rule is AlertingRule => rule.type === PromRuleType.Alerting))
|
|
.flatMap((rule) => rule.alerts ?? [])
|
|
.map((alert) => Object.keys(alert.labels ?? {}))
|
|
.flatMap((labels) => labels.filter(isPrivateLabel));
|
|
|
|
return uniq(allLabels);
|
|
}, [allRequestsReady, promRulesByDatasource]);
|
|
|
|
return (
|
|
<MultiSelect<string>
|
|
id={id}
|
|
isLoading={loading}
|
|
defaultValue={defaultValue}
|
|
aria-label={'group by label keys'}
|
|
placeholder="Group by"
|
|
prefix={<Icon name={'tag-alt'} />}
|
|
onChange={(items) => {
|
|
onChange(items.map((item) => item.value ?? ''));
|
|
}}
|
|
options={labels.map<SelectableValue>((key) => ({
|
|
label: key,
|
|
value: key,
|
|
}))}
|
|
/>
|
|
);
|
|
};
|