You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The base error-notification feature (#17) sends Slack/Discord webhooks on
qualifying exceptions, but routes everything to a single configured target.
Teams usually want severity-based fan-out so noisy warnings and true incidents
don't land in the same channel.
Route by severity, e.g. critical → #alerts, warnings → #monitoring
Configurable mapping via settings/env (keep the single-target default when unset)
Reuse the existing Protocol + Selector adapters and the severity threshold
already introduced in Add error notification (Slack, Discord) #17 — this is routing on top, not a new transport
Problem
The base error-notification feature (#17) sends Slack/Discord webhooks on
qualifying exceptions, but routes everything to a single configured target.
Teams usually want severity-based fan-out so noisy warnings and true incidents
don't land in the same channel.
Proposed Solution
Build on top of the notification infra from #17:
critical → #alerts,warnings → #monitoringalready introduced in Add error notification (Slack, Discord) #17 — this is routing on top, not a new transport
Notes
in front of the existing webhook adapter(s).
Area
Core (_core)