From 212acb9bc5ba57bd25698d6f369376d4b720c269 Mon Sep 17 00:00:00 2001 From: Armand Grillet <2117580+armandgrillet@users.noreply.github.com> Date: Wed, 10 Apr 2024 18:30:21 +0200 Subject: [PATCH] Alerting: clarify alerting silences (#85853) * Clarify alerting silences * Update docs/sources/alerting/configure-notifications/create-silence.md Co-authored-by: Tom Ratcliffe --------- Co-authored-by: Tom Ratcliffe --- .../alerting/configure-notifications/create-silence.md | 2 +- .../alerting/unified/components/rule-viewer/Actions.tsx | 2 +- .../unified/components/silences/SilencedInstancesPreview.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sources/alerting/configure-notifications/create-silence.md b/docs/sources/alerting/configure-notifications/create-silence.md index 01d9062ea22..33e88da3d1d 100644 --- a/docs/sources/alerting/configure-notifications/create-silence.md +++ b/docs/sources/alerting/configure-notifications/create-silence.md @@ -43,7 +43,7 @@ To add a silence, complete the following steps. 1. Click **Create silence** to open the Create silence page. 1. In **Silence start and end**, select the start and end date to indicate when the silence should go into effect and expire. 1. Optionally, in **Duration**, specify how long the silence is enforced. This automatically updates the end time in the **Silence start and end** field. -1. In the **Label** and **Value** fields, enter one or more _Matching Labels_. Matchers determine which rules the silence will apply to. Any matching alerts (in firing state) will show in the **Affected alert instances** field +1. In the **Label** and **Value** fields, enter one or more _Matching Labels_. Matchers determine which rules the silence will apply to. Any matching alerts (in firing state) will show in the **Silenced alert instances** field 1. In **Comment**, add details about the silence. 1. Click **Submit**. diff --git a/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx b/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx index 3c2bd1f6c22..ee57acb14b2 100644 --- a/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx +++ b/public/app/features/alerting/unified/components/rule-viewer/Actions.tsx @@ -55,7 +55,7 @@ export const useAlertRulePageActions = ({ handleDelete, handleDuplicateRule }: P {canEdit && } {canSilence && ( diff --git a/public/app/features/alerting/unified/components/silences/SilencedInstancesPreview.tsx b/public/app/features/alerting/unified/components/silences/SilencedInstancesPreview.tsx index a45d210b0a7..81e026133d1 100644 --- a/public/app/features/alerting/unified/components/silences/SilencedInstancesPreview.tsx +++ b/public/app/features/alerting/unified/components/silences/SilencedInstancesPreview.tsx @@ -43,7 +43,7 @@ export const SilencedInstancesPreview = ({ amSourceName, matchers }: Props) => { return (

- Affected alert instances + Silenced alert instances {tableItemAlerts.length > 0 ? ( ) : null} @@ -65,7 +65,7 @@ export const SilencedInstancesPreview = ({ amSourceName, matchers }: Props) => { pagination={{ itemsPerPage: 10 }} /> ) : ( - No matching alert instances found + No firing alert instances found )}

)}