mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 02:35:56 +08:00
fix: resolved issue with promql rule creation (#1422)
This commit is contained in:
parent
bf2f3f8f5e
commit
1b6597b974
@ -177,6 +177,7 @@ function FormAlertRules({
|
||||
return false;
|
||||
}
|
||||
|
||||
if (queryCategory === EQueryType.QUERY_BUILDER) {
|
||||
Object.keys(metricQueries).forEach((key) => {
|
||||
if (metricQueries[key].metricName === '') {
|
||||
retval = false;
|
||||
@ -186,7 +187,6 @@ function FormAlertRules({
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Object.keys(formulaQueries).forEach((key) => {
|
||||
if (formulaQueries[key].expression === '') {
|
||||
retval = false;
|
||||
@ -196,6 +196,7 @@ function FormAlertRules({
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return retval;
|
||||
}, [t, alertDef, queryCategory, metricQueries, formulaQueries, promQueries]);
|
||||
@ -235,7 +236,7 @@ function FormAlertRules({
|
||||
description:
|
||||
!ruleId || ruleId === 0 ? t('rule_created') : t('rule_edited'),
|
||||
});
|
||||
console.log('invalidting cache');
|
||||
|
||||
// invalidate rule in cache
|
||||
ruleCache.invalidateQueries(['ruleId', ruleId]);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user