We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c24195 commit 086643dCopy full SHA for 086643d
1 file changed
src/sniff/reporter.rs
@@ -106,7 +106,10 @@ impl Reporter {
106
.await?;
107
}
108
109
- // Route to appropriate notification channels
+ // Route to appropriate notification channels (respecting minimum severity)
110
+ if alert_severity < self.notification_config.minimum_severity() {
111
+ continue;
112
+ }
113
let channels = self
114
.notification_config
115
.configured_channels_for_severity(alert_severity);
0 commit comments