From 5cc46e999d695ea71175af8ee8538953ca688f46 Mon Sep 17 00:00:00 2001 From: Pavan Gudiwada <25551553+pavangudiwada@users.noreply.github.com> Date: Sun, 26 Jan 2025 13:07:59 +0530 Subject: [PATCH] Updated notification routing docs (#1700) --- .../disable-oomkill-notifications.rst | 11 +++++++++++ docs/notification-routing/excluding-resolved.rst | 15 +++++++++++++++ .../notification-routing-examples.rst | 2 ++ 3 files changed, 28 insertions(+) create mode 100644 docs/notification-routing/disable-oomkill-notifications.rst create mode 100644 docs/notification-routing/excluding-resolved.rst diff --git a/docs/notification-routing/disable-oomkill-notifications.rst b/docs/notification-routing/disable-oomkill-notifications.rst new file mode 100644 index 000000000..4bfabc29c --- /dev/null +++ b/docs/notification-routing/disable-oomkill-notifications.rst @@ -0,0 +1,11 @@ +Disable "OOMKill" Notifications +=================================== + +Configure Robusta to not send OOMKill notifications by disabling the built-in OOMKill playbook. + +.. code-block:: yaml + + disabledPlaybooks: + - PodOOMKill + +Similarly you can to disable any built-in notification using the name of the playbook. Find all the built-in playbooks `here `_ and `here `_ \ No newline at end of file diff --git a/docs/notification-routing/excluding-resolved.rst b/docs/notification-routing/excluding-resolved.rst new file mode 100644 index 000000000..3e909b559 --- /dev/null +++ b/docs/notification-routing/excluding-resolved.rst @@ -0,0 +1,15 @@ +Exclude "Resolved" Notifications +=================================== + +Configure Robusta to not send notifications for issues that are resolved. This helps you reduce noise and focus on just firing alerts + +.. code-block:: yaml + + sinksConfig: + - slack_sink: + name: high_severity_sink + slack_channel: high-severity-notifications + api_key: secret-key + scope: + exclude: + - title: ".*[RESOLVED].*" \ No newline at end of file diff --git a/docs/notification-routing/notification-routing-examples.rst b/docs/notification-routing/notification-routing-examples.rst index b6f332633..916343060 100644 --- a/docs/notification-routing/notification-routing-examples.rst +++ b/docs/notification-routing/notification-routing-examples.rst @@ -11,5 +11,7 @@ Routing Cookbook routing-to-multiple-slack-channels routing-exclusion routing-by-severity + excluding-resolved + disable-oomkill-notifications In this section you'll find example configurations for common routing patterns.