2025-09-10 21:43:54 +07:00
|
|
|
import { QueryParams } from 'constants/query';
|
|
|
|
|
import {
|
|
|
|
|
alertDefaults,
|
|
|
|
|
anamolyAlertDefaults,
|
|
|
|
|
exceptionAlertDefaults,
|
|
|
|
|
logAlertDefaults,
|
|
|
|
|
traceAlertDefaults,
|
|
|
|
|
} from 'container/CreateAlertRule/defaults';
|
|
|
|
|
import { AlertTypes } from 'types/api/alerts/alertTypes';
|
|
|
|
|
import { AlertDef } from 'types/api/alerts/def';
|
|
|
|
|
import { Query } from 'types/api/queryBuilder/queryBuilderData';
|
|
|
|
|
import { DataSource } from 'types/common/queryBuilder';
|
|
|
|
|
|
2025-09-15 22:52:07 +07:00
|
|
|
import {
|
2025-09-19 13:18:53 +07:00
|
|
|
INITIAL_ADVANCED_OPTIONS_STATE,
|
|
|
|
|
INITIAL_ALERT_THRESHOLD_STATE,
|
|
|
|
|
INITIAL_EVALUATION_WINDOW_STATE,
|
|
|
|
|
} from './constants';
|
|
|
|
|
import {
|
|
|
|
|
AdvancedOptionsAction,
|
|
|
|
|
AdvancedOptionsState,
|
2025-09-15 22:52:07 +07:00
|
|
|
AlertState,
|
|
|
|
|
AlertThresholdAction,
|
|
|
|
|
AlertThresholdState,
|
|
|
|
|
CreateAlertAction,
|
2025-09-19 13:18:53 +07:00
|
|
|
EvaluationWindowAction,
|
|
|
|
|
EvaluationWindowState,
|
2025-09-15 22:52:07 +07:00
|
|
|
} from './types';
|
2025-09-09 14:56:29 +07:00
|
|
|
|
|
|
|
|
export const alertCreationReducer = (
|
|
|
|
|
state: AlertState,
|
|
|
|
|
action: CreateAlertAction,
|
|
|
|
|
): AlertState => {
|
|
|
|
|
switch (action.type) {
|
|
|
|
|
case 'SET_ALERT_NAME':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
name: action.payload,
|
|
|
|
|
};
|
|
|
|
|
case 'SET_ALERT_DESCRIPTION':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
description: action.payload,
|
|
|
|
|
};
|
|
|
|
|
case 'SET_ALERT_LABELS':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
labels: action.payload,
|
|
|
|
|
};
|
2025-09-15 22:52:07 +07:00
|
|
|
case 'SET_Y_AXIS_UNIT':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
yAxisUnit: action.payload,
|
|
|
|
|
};
|
2025-09-09 14:56:29 +07:00
|
|
|
default:
|
|
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
};
|
2025-09-10 21:43:54 +07:00
|
|
|
|
|
|
|
|
export function getInitialAlertType(currentQuery: Query): AlertTypes {
|
|
|
|
|
const dataSource =
|
|
|
|
|
currentQuery.builder.queryData[0].dataSource || DataSource.METRICS;
|
|
|
|
|
switch (dataSource) {
|
|
|
|
|
case DataSource.METRICS:
|
|
|
|
|
return AlertTypes.METRICS_BASED_ALERT;
|
|
|
|
|
case DataSource.LOGS:
|
|
|
|
|
return AlertTypes.LOGS_BASED_ALERT;
|
|
|
|
|
case DataSource.TRACES:
|
|
|
|
|
return AlertTypes.TRACES_BASED_ALERT;
|
|
|
|
|
default:
|
|
|
|
|
return AlertTypes.METRICS_BASED_ALERT;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function buildInitialAlertDef(alertType: AlertTypes): AlertDef {
|
|
|
|
|
switch (alertType) {
|
|
|
|
|
case AlertTypes.LOGS_BASED_ALERT:
|
|
|
|
|
return logAlertDefaults;
|
|
|
|
|
case AlertTypes.TRACES_BASED_ALERT:
|
|
|
|
|
return traceAlertDefaults;
|
|
|
|
|
case AlertTypes.EXCEPTIONS_BASED_ALERT:
|
|
|
|
|
return exceptionAlertDefaults;
|
|
|
|
|
case AlertTypes.ANOMALY_BASED_ALERT:
|
|
|
|
|
return anamolyAlertDefaults;
|
|
|
|
|
case AlertTypes.METRICS_BASED_ALERT:
|
|
|
|
|
return alertDefaults;
|
|
|
|
|
default:
|
|
|
|
|
return alertDefaults;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getInitialAlertTypeFromURL(
|
|
|
|
|
urlSearchParams: URLSearchParams,
|
|
|
|
|
currentQuery: Query,
|
|
|
|
|
): AlertTypes {
|
|
|
|
|
const alertTypeFromURL = urlSearchParams.get(QueryParams.alertType);
|
|
|
|
|
return alertTypeFromURL
|
|
|
|
|
? (alertTypeFromURL as AlertTypes)
|
|
|
|
|
: getInitialAlertType(currentQuery);
|
|
|
|
|
}
|
2025-09-15 22:52:07 +07:00
|
|
|
|
|
|
|
|
export const alertThresholdReducer = (
|
|
|
|
|
state: AlertThresholdState,
|
|
|
|
|
action: AlertThresholdAction,
|
|
|
|
|
): AlertThresholdState => {
|
|
|
|
|
switch (action.type) {
|
|
|
|
|
case 'SET_SELECTED_QUERY':
|
|
|
|
|
return { ...state, selectedQuery: action.payload };
|
|
|
|
|
case 'SET_OPERATOR':
|
|
|
|
|
return { ...state, operator: action.payload };
|
|
|
|
|
case 'SET_MATCH_TYPE':
|
|
|
|
|
return { ...state, matchType: action.payload };
|
|
|
|
|
case 'SET_THRESHOLDS':
|
|
|
|
|
return { ...state, thresholds: action.payload };
|
|
|
|
|
case 'RESET':
|
|
|
|
|
return INITIAL_ALERT_THRESHOLD_STATE;
|
|
|
|
|
default:
|
|
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
};
|
2025-09-19 13:18:53 +07:00
|
|
|
|
|
|
|
|
export const advancedOptionsReducer = (
|
|
|
|
|
state: AdvancedOptionsState,
|
|
|
|
|
action: AdvancedOptionsAction,
|
|
|
|
|
): AdvancedOptionsState => {
|
|
|
|
|
switch (action.type) {
|
|
|
|
|
case 'SET_SEND_NOTIFICATION_IF_DATA_IS_MISSING':
|
|
|
|
|
return { ...state, sendNotificationIfDataIsMissing: action.payload };
|
|
|
|
|
case 'SET_ENFORCE_MINIMUM_DATAPOINTS':
|
|
|
|
|
return { ...state, enforceMinimumDatapoints: action.payload };
|
|
|
|
|
case 'SET_DELAY_EVALUATION':
|
|
|
|
|
return { ...state, delayEvaluation: action.payload };
|
|
|
|
|
case 'SET_EVALUATION_CADENCE':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
evaluationCadence: { ...state.evaluationCadence, ...action.payload },
|
|
|
|
|
};
|
|
|
|
|
case 'SET_EVALUATION_CADENCE_MODE':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
evaluationCadence: { ...state.evaluationCadence, mode: action.payload },
|
|
|
|
|
};
|
|
|
|
|
case 'RESET':
|
|
|
|
|
return INITIAL_ADVANCED_OPTIONS_STATE;
|
|
|
|
|
default:
|
|
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const evaluationWindowReducer = (
|
|
|
|
|
state: EvaluationWindowState,
|
|
|
|
|
action: EvaluationWindowAction,
|
|
|
|
|
): EvaluationWindowState => {
|
|
|
|
|
switch (action.type) {
|
|
|
|
|
case 'SET_WINDOW_TYPE':
|
|
|
|
|
return {
|
|
|
|
|
...state,
|
|
|
|
|
windowType: action.payload,
|
|
|
|
|
startingAt: INITIAL_EVALUATION_WINDOW_STATE.startingAt,
|
|
|
|
|
timeframe:
|
|
|
|
|
action.payload === 'rolling'
|
|
|
|
|
? INITIAL_EVALUATION_WINDOW_STATE.timeframe
|
|
|
|
|
: 'currentHour',
|
|
|
|
|
};
|
|
|
|
|
case 'SET_TIMEFRAME':
|
|
|
|
|
return { ...state, timeframe: action.payload };
|
|
|
|
|
case 'SET_STARTING_AT':
|
|
|
|
|
return { ...state, startingAt: action.payload };
|
|
|
|
|
case 'RESET':
|
|
|
|
|
return INITIAL_EVALUATION_WINDOW_STATE;
|
|
|
|
|
default:
|
|
|
|
|
return state;
|
|
|
|
|
}
|
|
|
|
|
};
|