Skip to content

Commit

Permalink
Merge branch 'master' into doc-bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
pavangudiwada authored Jan 26, 2025
2 parents 2b33083 + 5cc46e9 commit 2c7c5c8
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/notification-routing/disable-oomkill-notifications.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/robusta-dev/robusta/blob/master/helm/robusta/values.yaml#L113>`_ and `here <https://github.com/robusta-dev/robusta/blob/master/helm/robusta/values.yaml#L169>`_
15 changes: 15 additions & 0 deletions docs/notification-routing/excluding-resolved.rst
Original file line number Diff line number Diff line change
@@ -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].*"
2 changes: 2 additions & 0 deletions docs/notification-routing/notification-routing-examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit 2c7c5c8

Please sign in to comment.