diff --git a/pkg/alerting/alerting.go b/pkg/alerting/alerting.go index f41e6bf..1a0eb03 100644 --- a/pkg/alerting/alerting.go +++ b/pkg/alerting/alerting.go @@ -179,7 +179,6 @@ func (as *alerter) eval(ctx context.Context, now time.Time, testMode bool) ([]Al if s.Score > as.cfg.AlertThreshold || testMode { if old, inCache := as.alertCache[s.ID]; !inCache || now.Sub(old.Timestamp) > as.renotify { - s.Score *= as.tgCache.ApplyAlertRules(s.ID, now) a, err := as.makeAlert(ctx, s, origScore) if err != nil { return nil, fmt.Errorf("makeAlert: %w", err)