From 56e148408ef3fd3e874612c5ab8bbc6bd1c9775e Mon Sep 17 00:00:00 2001 From: Konrad Lalik Date: Wed, 19 Nov 2025 11:42:39 +0100 Subject: [PATCH] Alerting: Remove unknown state filter (#114143) * Remove unknown state filter * Update translations --- .../alerting/unified/rule-list/filter/RulesFilter.v2.tsx | 6 ++++-- public/locales/en-US/grafana.json | 3 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx b/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx index e55b4c9d930..1cc702038ac 100644 --- a/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx +++ b/public/app/features/alerting/unified/rule-list/filter/RulesFilter.v2.tsx @@ -602,7 +602,6 @@ function RuleStateField() { { label: t('alerting.rules.state.normal', 'Normal'), value: PromAlertingRuleState.Inactive }, { label: t('alerting.rules.state.pending', 'Pending'), value: PromAlertingRuleState.Pending }, { label: t('alerting.rules.state.recovering', 'Recovering'), value: PromAlertingRuleState.Recovering }, - { label: t('alerting.rules.state.unknown', 'Unknown'), value: PromAlertingRuleState.Unknown }, ]} value={field.value} onChange={field.onChange} @@ -762,7 +761,10 @@ function SearchQueryHelp() { title={t('alerting.search-query-help.title-labels', 'Labels')} expr='label:team=A label:"cluster=new york"' /> - +