Hi!
> What we'd like for our purposes is some way to re-send all such
suppressed alert notifications if the alert is still active when an
inhibition or mute expires. So, for example, if we mute alert
notifications out of hours and some alert triggers then, at the start of
working hours we'd get an alert notification for that alert (or group of
them, etc).
Alertmanager isn't able to re-send alerts when a mute time interval
becomes inactive, because time intervals are not checked until it's
time to send the notification again.
> We don't want to do this by reducing our repeat_interval
> (which is currently large).
However, I think you can approximate this by having a short
group_interval (for example, 5 minutes). Each time the group_interval
elapses, Alertmanager will check if there are new alerts in the group
for which a notification has not been sent. This will be true if an
alert fired over night, and is still firing in working hours.
However, if the alert resolved before the start of working hours, then
a notification might not be sent as the alert is resolved.
Best regards,
George