mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 18:45: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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (queryCategory === EQueryType.QUERY_BUILDER) {
|
||||||
Object.keys(metricQueries).forEach((key) => {
|
Object.keys(metricQueries).forEach((key) => {
|
||||||
if (metricQueries[key].metricName === '') {
|
if (metricQueries[key].metricName === '') {
|
||||||
retval = false;
|
retval = false;
|
||||||
@ -186,7 +187,6 @@ function FormAlertRules({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Object.keys(formulaQueries).forEach((key) => {
|
Object.keys(formulaQueries).forEach((key) => {
|
||||||
if (formulaQueries[key].expression === '') {
|
if (formulaQueries[key].expression === '') {
|
||||||
retval = false;
|
retval = false;
|
||||||
@ -196,6 +196,7 @@ function FormAlertRules({
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}, [t, alertDef, queryCategory, metricQueries, formulaQueries, promQueries]);
|
}, [t, alertDef, queryCategory, metricQueries, formulaQueries, promQueries]);
|
||||||
@ -235,7 +236,7 @@ function FormAlertRules({
|
|||||||
description:
|
description:
|
||||||
!ruleId || ruleId === 0 ? t('rule_created') : t('rule_edited'),
|
!ruleId || ruleId === 0 ? t('rule_created') : t('rule_edited'),
|
||||||
});
|
});
|
||||||
console.log('invalidting cache');
|
|
||||||
// invalidate rule in cache
|
// invalidate rule in cache
|
||||||
ruleCache.invalidateQueries(['ruleId', ruleId]);
|
ruleCache.invalidateQueries(['ruleId', ruleId]);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user