debian-mirror-gitlab/spec/factories/prometheus_alert.rb
2022-10-11 01:57:18 +05:30

22 lines
446 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :prometheus_alert do
project
operator { :gt }
threshold { 1 }
environment do |alert|
association(:environment, project: alert.project)
end
prometheus_metric do |alert|
association(:prometheus_metric, project: alert.project)
end
trait :with_runbook_url do
runbook_url { 'https://runbooks.gitlab.com/metric_gt_1' }
end
end
end