The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
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.
 
 
 
 
 
 
grafana/public/app/features/alerting/state/reducers.ts

168 lines
4.9 KiB

import { createSlice, PayloadAction } from '@reduxjs/toolkit';
import { dateTime } from '@grafana/data';
import {
AlertRule,
AlertRuleDTO,
AlertRulesState,
NotificationChannelOption,
NotificationChannelState,
NotifierDTO,
} from 'app/types';
import unifiedAlertingReducer from '../unified/state/reducers';
import alertDef from './alertDef';
export const initialState: AlertRulesState = {
items: [],
searchQuery: '',
isLoading: false,
};
export const initialChannelState: NotificationChannelState = {
notificationChannelTypes: [],
notificationChannel: {},
notifiers: [],
};
function convertToAlertRule(dto: AlertRuleDTO, state: string): AlertRule {
const stateModel = alertDef.getStateDisplayModel(state);
const rule: AlertRule = {
...dto,
stateText: stateModel.text,
stateIcon: stateModel.iconClass,
stateClass: stateModel.stateClass,
stateAge: dateTime(dto.newStateDate).fromNow(true),
};
if (rule.state !== 'paused') {
if (rule.executionError) {
rule.info = 'Execution Error: ' + rule.executionError;
}
if (rule.evalData && rule.evalData.noData) {
rule.info = 'Query returned no data';
}
}
return rule;
}
const alertRulesSlice = createSlice({
name: 'alertRules',
initialState,
reducers: {
loadAlertRules: (state) => {
return { ...state, isLoading: true };
},
loadedAlertRules: (state, action: PayloadAction<AlertRuleDTO[]>): AlertRulesState => {
const alertRules: AlertRuleDTO[] = action.payload;
const alertRulesViewModel: AlertRule[] = alertRules.map((rule) => {
return convertToAlertRule(rule, rule.state);
});
return { ...state, items: alertRulesViewModel, isLoading: false };
},
setSearchQuery: (state, action: PayloadAction<string>): AlertRulesState => {
return { ...state, searchQuery: action.payload };
},
},
});
const notificationChannelSlice = createSlice({
name: 'notificationChannel',
initialState: initialChannelState,
reducers: {
setNotificationChannels: (state, action: PayloadAction<NotifierDTO[]>): NotificationChannelState => {
return {
...state,
notificationChannelTypes: transformNotifiers(action.payload),
notifiers: action.payload,
};
},
notificationChannelLoaded: (state, action: PayloadAction<any>): NotificationChannelState => {
const notificationChannel = action.payload;
const selectedType: NotifierDTO = state.notifiers.find((t) => t.type === notificationChannel.type)!;
const secureChannelOptions = selectedType.options.filter((o: NotificationChannelOption) => o.secure);
/*
If any secure field is in plain text we need to migrate it to use secure field instead.
*/
if (
secureChannelOptions.length > 0 &&
secureChannelOptions.some((o: NotificationChannelOption) => {
return notificationChannel.settings[o.propertyName] !== '';
})
) {
return migrateSecureFields(state, action.payload, secureChannelOptions);
}
return { ...state, notificationChannel: notificationChannel };
},
resetSecureField: (state, action: PayloadAction<string>): NotificationChannelState => {
return {
...state,
notificationChannel: {
...state.notificationChannel,
secureFields: { ...state.notificationChannel.secureFields, [action.payload]: false },
},
};
},
},
});
export const { loadAlertRules, loadedAlertRules, setSearchQuery } = alertRulesSlice.actions;
export const { setNotificationChannels, notificationChannelLoaded, resetSecureField } =
notificationChannelSlice.actions;
export const alertRulesReducer = alertRulesSlice.reducer;
export const notificationChannelReducer = notificationChannelSlice.reducer;
export default {
alertRules: alertRulesReducer,
notificationChannel: notificationChannelReducer,
unifiedAlerting: unifiedAlertingReducer,
};
function migrateSecureFields(
state: NotificationChannelState,
notificationChannel: any,
secureChannelOptions: NotificationChannelOption[]
) {
const cleanedSettings: { [key: string]: string } = {};
const secureSettings: { [key: string]: string } = {};
secureChannelOptions.forEach((option) => {
secureSettings[option.propertyName] = notificationChannel.settings[option.propertyName];
cleanedSettings[option.propertyName] = '';
});
return {
...state,
notificationChannel: {
...notificationChannel,
settings: { ...notificationChannel.settings, ...cleanedSettings },
secureSettings: { ...secureSettings },
},
};
}
function transformNotifiers(notifiers: NotifierDTO[]) {
return notifiers
.map((option: NotifierDTO) => {
return {
value: option.type,
label: option.name,
...option,
typeName: option.type,
};
})
.sort((o1, o2) => {
if (o1.name > o2.name) {
return 1;
}
return -1;
});
}