-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
docs/notification-routing/disable-oomkill-notifications.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>`_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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].*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters