summaryrefslogtreecommitdiff
path: root/app/services/projects/prometheus/alerts/notify_service.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 12:07:12 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-17 12:07:12 +0000
commit43771438e9ccf20d1b6cf12b690e63844d7c3d49 (patch)
tree147aefba22d99be62ff3c112f50e205e486e58c7 /app/services/projects/prometheus/alerts/notify_service.rb
parenteeb25534bae1021f5b7940138ee56dea8fc79949 (diff)
downloadgitlab-ce-43771438e9ccf20d1b6cf12b690e63844d7c3d49.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/services/projects/prometheus/alerts/notify_service.rb')
-rw-r--r--app/services/projects/prometheus/alerts/notify_service.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/services/projects/prometheus/alerts/notify_service.rb b/app/services/projects/prometheus/alerts/notify_service.rb
index 1d24a113e05..f1c093c89b7 100644
--- a/app/services/projects/prometheus/alerts/notify_service.rb
+++ b/app/services/projects/prometheus/alerts/notify_service.rb
@@ -36,7 +36,7 @@ module Projects
truncate_alerts! if max_alerts_exceeded?
- process_prometheus_alerts
+ process_prometheus_alerts(integration)
created
end
@@ -151,10 +151,10 @@ module Projects
ActiveSupport::SecurityUtils.secure_compare(expected, actual)
end
- def process_prometheus_alerts
+ def process_prometheus_alerts(integration)
alerts.map do |alert|
AlertManagement::ProcessPrometheusAlertService
- .new(project, alert)
+ .new(project, alert, integration: integration)
.execute
end
end