diff --git a/public/app/features/expressions/types.ts b/public/app/features/expressions/types.ts index ad4091d608d..499ef9fdd39 100644 --- a/public/app/features/expressions/types.ts +++ b/public/app/features/expressions/types.ts @@ -26,7 +26,7 @@ export const getExpressionLabel = (type: ExpressionQueryType) => { case ExpressionQueryType.resample: return 'Resample'; case ExpressionQueryType.classic: - return 'Classic condition'; + return 'Classic condition (legacy)'; case ExpressionQueryType.threshold: return 'Threshold'; case ExpressionQueryType.sql: @@ -53,7 +53,7 @@ export const expressionTypes: Array> = [ }, { value: ExpressionQueryType.classic, - label: 'Classic condition', + label: 'Classic condition (legacy)', description: 'Takes one or more time series returned from a query or an expression and checks if any of the series match the condition. Disables multi-dimensional alerts for this rule.', },