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

20 lines
413 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :prometheus_metric, class: 'PrometheusMetric' do
title { 'title' }
query { 'avg(metric)' }
y_label { 'y_label' }
unit { 'm/s' }
group { :business }
project
legend { 'legend' }
dashboard_path { '.gitlab/dashboards/dashboard_path.yml' }
trait :common do
common { true }
project { nil }
end
end
end