Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/alert_management/alerts.rb')
-rw-r--r--spec/factories/alert_management/alerts.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/factories/alert_management/alerts.rb b/spec/factories/alert_management/alerts.rb
index ee1225b9542..f63a3c9f7f5 100644
--- a/spec/factories/alert_management/alerts.rb
+++ b/spec/factories/alert_management/alerts.rb
@@ -95,6 +95,10 @@ FactoryBot.define do
severity { 'unknown' }
end
+ trait :threat_monitoring do
+ domain { :threat_monitoring }
+ end
+
trait :prometheus do
monitoring_tool { Gitlab::AlertManagement::Payload::MONITORING_TOOLS[:prometheus] }
payload do
@@ -109,6 +113,20 @@ FactoryBot.define do
end
end
+ trait :cilium do
+ monitoring_tool { Gitlab::AlertManagement::Payload::MONITORING_TOOLS[:cilium] }
+ payload do
+ {
+ annotations: {
+ title: 'This is a cilium alert',
+ summary: 'Summary of the alert',
+ description: 'Description of the alert'
+ },
+ startsAt: started_at
+ }.with_indifferent_access
+ end
+ end
+
trait :all_fields do
with_issue
with_assignee