grafana/public/app/features/alerting/state/alertDef.ts
Paweł Ślusarczyk ccac8d2294
Alerting: Update alertDef.ts with more time options (#29498)
there was a troublesome jump between time ranges of 1h and 24h in previous version
2020-12-01 15:34:15 +01:00

172 lines
4.4 KiB
TypeScript

import _ from 'lodash';
import { QueryPartDef, QueryPart } from 'app/core/components/query_part/query_part';
const alertQueryDef = new QueryPartDef({
type: 'query',
params: [
{ name: 'queryRefId', type: 'string', dynamicLookup: true },
{
name: 'from',
type: 'string',
options: ['10s', '1m', '5m', '10m', '15m', '1h', '2h', '6h', '12h', '24h', '48h'],
},
{ name: 'to', type: 'string', options: ['now', 'now-1m', 'now-5m', 'now-10m', 'now-1h'] },
],
defaultParams: ['#A', '15m', 'now', 'avg'],
});
const conditionTypes = [{ text: 'Query', value: 'query' }];
const alertStateSortScore = {
alerting: 1,
no_data: 2,
pending: 3,
ok: 4,
paused: 5,
};
const evalFunctions = [
{ text: 'IS ABOVE', value: 'gt' },
{ text: 'IS BELOW', value: 'lt' },
{ text: 'IS OUTSIDE RANGE', value: 'outside_range' },
{ text: 'IS WITHIN RANGE', value: 'within_range' },
{ text: 'HAS NO VALUE', value: 'no_value' },
];
const evalOperators = [
{ text: 'OR', value: 'or' },
{ text: 'AND', value: 'and' },
];
const reducerTypes = [
{ text: 'avg()', value: 'avg' },
{ text: 'min()', value: 'min' },
{ text: 'max()', value: 'max' },
{ text: 'sum()', value: 'sum' },
{ text: 'count()', value: 'count' },
{ text: 'last()', value: 'last' },
{ text: 'median()', value: 'median' },
{ text: 'diff()', value: 'diff' },
{ text: 'diff_abs()', value: 'diff_abs' },
{ text: 'percent_diff()', value: 'percent_diff' },
{ text: 'percent_diff_abs()', value: 'percent_diff_abs' },
{ text: 'count_non_null()', value: 'count_non_null' },
];
const noDataModes = [
{ text: 'Alerting', value: 'alerting' },
{ text: 'No Data', value: 'no_data' },
{ text: 'Keep Last State', value: 'keep_state' },
{ text: 'Ok', value: 'ok' },
];
const executionErrorModes = [
{ text: 'Alerting', value: 'alerting' },
{ text: 'Keep Last State', value: 'keep_state' },
];
function createReducerPart(model: any) {
const def = new QueryPartDef({ type: model.type, defaultParams: [] });
return new QueryPart(model, def);
}
function getStateDisplayModel(state: string) {
switch (state) {
case 'ok': {
return {
text: 'OK',
iconClass: 'heart',
stateClass: 'alert-state-ok',
};
}
case 'alerting': {
return {
text: 'ALERTING',
iconClass: 'heart-break',
stateClass: 'alert-state-critical',
};
}
case 'no_data': {
return {
text: 'NO DATA',
iconClass: 'question-circle',
stateClass: 'alert-state-warning',
};
}
case 'paused': {
return {
text: 'PAUSED',
iconClass: 'pause',
stateClass: 'alert-state-paused',
};
}
case 'pending': {
return {
text: 'PENDING',
iconClass: 'exclamation-triangle',
stateClass: 'alert-state-warning',
};
}
case 'unknown': {
return {
text: 'UNKNOWN',
iconClass: 'question-circle',
stateClass: 'alert-state-paused',
};
}
}
throw { message: 'Unknown alert state' };
}
function joinEvalMatches(matches: any, separator: string) {
return _.reduce(
matches,
(res, ev) => {
if (ev.metric !== undefined && ev.value !== undefined) {
res.push(ev.metric + '=' + ev.value);
}
// For backwards compatibility . Should be be able to remove this after ~2017-06-01
if (ev.Metric !== undefined && ev.Value !== undefined) {
res.push(ev.Metric + '=' + ev.Value);
}
return res;
},
[] as string[]
).join(separator);
}
function getAlertAnnotationInfo(ah: any) {
// backward compatibility, can be removed in grafana 5.x
// old way stored evalMatches in data property directly,
// new way stores it in evalMatches property on new data object
if (_.isArray(ah.data)) {
return joinEvalMatches(ah.data, ', ');
} else if (_.isArray(ah.data.evalMatches)) {
return joinEvalMatches(ah.data.evalMatches, ', ');
}
if (ah.data.error) {
return 'Error: ' + ah.data.error;
}
return '';
}
export default {
alertQueryDef: alertQueryDef,
getStateDisplayModel: getStateDisplayModel,
conditionTypes: conditionTypes,
evalFunctions: evalFunctions,
evalOperators: evalOperators,
noDataModes: noDataModes,
executionErrorModes: executionErrorModes,
reducerTypes: reducerTypes,
createReducerPart: createReducerPart,
getAlertAnnotationInfo: getAlertAnnotationInfo,
alertStateSortScore: alertStateSortScore,
};