mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
283 lines
9.2 KiB
TypeScript
283 lines
9.2 KiB
TypeScript
import { createSlice, PayloadAction } from '@reduxjs/toolkit';
|
|
import { ApplyFieldOverrideOptions, DataFrame, DataTransformerConfig, dateTime, FieldColorModeId } from '@grafana/data';
|
|
import alertDef from './alertDef';
|
|
import {
|
|
AlertDefinition,
|
|
AlertDefinitionDTO,
|
|
AlertDefinitionQueryModel,
|
|
AlertDefinitionState,
|
|
AlertDefinitionUiState,
|
|
AlertRule,
|
|
AlertRuleDTO,
|
|
AlertRulesState,
|
|
NotificationChannelOption,
|
|
NotificationChannelState,
|
|
NotifierDTO,
|
|
QueryGroupOptions,
|
|
} from 'app/types';
|
|
import store from 'app/core/store';
|
|
import { config } from '@grafana/runtime';
|
|
import { PanelQueryRunner } from '../../query/state/PanelQueryRunner';
|
|
import unifiedAlertingReducer from '../unified/state/reducers';
|
|
|
|
export const ALERT_DEFINITION_UI_STATE_STORAGE_KEY = 'grafana.alerting.alertDefinition.ui';
|
|
const DEFAULT_ALERT_DEFINITION_UI_STATE: AlertDefinitionUiState = { rightPaneSize: 400, topPaneSize: 0.45 };
|
|
|
|
export const initialState: AlertRulesState = {
|
|
items: [],
|
|
searchQuery: '',
|
|
isLoading: false,
|
|
};
|
|
|
|
export const initialChannelState: NotificationChannelState = {
|
|
notificationChannelTypes: [],
|
|
notificationChannel: {},
|
|
notifiers: [],
|
|
};
|
|
|
|
const options: ApplyFieldOverrideOptions = {
|
|
fieldConfig: {
|
|
defaults: {
|
|
color: {
|
|
mode: FieldColorModeId.PaletteClassic,
|
|
},
|
|
},
|
|
overrides: [],
|
|
},
|
|
replaceVariables: (v: string) => v,
|
|
theme: config.theme,
|
|
};
|
|
|
|
const dataConfig = {
|
|
getTransformations: () => [] as DataTransformerConfig[],
|
|
getFieldOverrideOptions: () => options,
|
|
};
|
|
|
|
export const initialAlertDefinitionState: AlertDefinitionState = {
|
|
alertDefinition: {
|
|
id: 0,
|
|
uid: '',
|
|
title: '',
|
|
description: '',
|
|
condition: '',
|
|
data: [],
|
|
intervalSeconds: 60,
|
|
},
|
|
queryRunner: new PanelQueryRunner(dataConfig),
|
|
uiState: { ...store.getObject(ALERT_DEFINITION_UI_STATE_STORAGE_KEY, DEFAULT_ALERT_DEFINITION_UI_STATE) },
|
|
data: [],
|
|
alertDefinitions: [] as AlertDefinition[],
|
|
/* These are functions as they are mutated later on and redux toolkit will Object.freeze state so
|
|
* we need to store these using functions instead */
|
|
getInstances: () => [] as DataFrame[],
|
|
getQueryOptions: () => ({ maxDataPoints: 100, dataSource: { name: '-- Mixed --' }, queries: [] }),
|
|
};
|
|
|
|
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 },
|
|
},
|
|
};
|
|
},
|
|
},
|
|
});
|
|
|
|
const alertDefinitionSlice = createSlice({
|
|
name: 'alertDefinition',
|
|
initialState: initialAlertDefinitionState,
|
|
reducers: {
|
|
setAlertDefinition: (state: AlertDefinitionState, action: PayloadAction<AlertDefinitionDTO>) => {
|
|
const currentOptions = state.getQueryOptions();
|
|
|
|
state.alertDefinition.title = action.payload.title;
|
|
state.alertDefinition.id = action.payload.id;
|
|
state.alertDefinition.uid = action.payload.uid;
|
|
state.alertDefinition.condition = action.payload.condition;
|
|
state.alertDefinition.intervalSeconds = action.payload.intervalSeconds;
|
|
state.alertDefinition.data = action.payload.data;
|
|
state.alertDefinition.description = action.payload.description;
|
|
state.getQueryOptions = () => ({
|
|
...currentOptions,
|
|
queries: action.payload.data.map((q: AlertDefinitionQueryModel) => ({ ...q.model })),
|
|
});
|
|
},
|
|
updateAlertDefinitionOptions: (state: AlertDefinitionState, action: PayloadAction<Partial<AlertDefinition>>) => {
|
|
state.alertDefinition = { ...state.alertDefinition, ...action.payload };
|
|
},
|
|
setUiState: (state: AlertDefinitionState, action: PayloadAction<AlertDefinitionUiState>) => {
|
|
state.uiState = { ...state.uiState, ...action.payload };
|
|
},
|
|
setQueryOptions: (state: AlertDefinitionState, action: PayloadAction<QueryGroupOptions>) => {
|
|
state.getQueryOptions = () => action.payload;
|
|
},
|
|
setAlertDefinitions: (state: AlertDefinitionState, action: PayloadAction<AlertDefinition[]>) => {
|
|
state.alertDefinitions = action.payload;
|
|
},
|
|
setInstanceData: (state: AlertDefinitionState, action: PayloadAction<DataFrame[]>) => {
|
|
state.getInstances = () => action.payload;
|
|
},
|
|
cleanUpState: (state: AlertDefinitionState, action: PayloadAction<undefined>) => {
|
|
if (state.queryRunner) {
|
|
state.queryRunner.destroy();
|
|
state.queryRunner = undefined;
|
|
delete state.queryRunner;
|
|
state.queryRunner = new PanelQueryRunner(dataConfig);
|
|
}
|
|
|
|
state.alertDefinitions = initialAlertDefinitionState.alertDefinitions;
|
|
state.alertDefinition = initialAlertDefinitionState.alertDefinition;
|
|
state.data = initialAlertDefinitionState.data;
|
|
state.getInstances = initialAlertDefinitionState.getInstances;
|
|
state.getQueryOptions = initialAlertDefinitionState.getQueryOptions;
|
|
state.uiState = initialAlertDefinitionState.uiState;
|
|
},
|
|
},
|
|
});
|
|
|
|
export const { loadAlertRules, loadedAlertRules, setSearchQuery } = alertRulesSlice.actions;
|
|
|
|
export const {
|
|
setNotificationChannels,
|
|
notificationChannelLoaded,
|
|
resetSecureField,
|
|
} = notificationChannelSlice.actions;
|
|
|
|
export const {
|
|
setUiState,
|
|
updateAlertDefinitionOptions,
|
|
setQueryOptions,
|
|
setAlertDefinitions,
|
|
setAlertDefinition,
|
|
setInstanceData,
|
|
cleanUpState,
|
|
} = alertDefinitionSlice.actions;
|
|
|
|
export const alertRulesReducer = alertRulesSlice.reducer;
|
|
export const notificationChannelReducer = notificationChannelSlice.reducer;
|
|
export const alertDefinitionsReducer = alertDefinitionSlice.reducer;
|
|
|
|
export default {
|
|
alertRules: alertRulesReducer,
|
|
notificationChannel: notificationChannelReducer,
|
|
alertDefinition: alertDefinitionsReducer,
|
|
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;
|
|
});
|
|
}
|