summaryrefslogtreecommitdiff
path: root/spec/factories/prometheus_metrics.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/prometheus_metrics.rb')
-rw-r--r--spec/factories/prometheus_metrics.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/factories/prometheus_metrics.rb b/spec/factories/prometheus_metrics.rb
new file mode 100644
index 00000000000..c56644bfb96
--- /dev/null
+++ b/spec/factories/prometheus_metrics.rb
@@ -0,0 +1,18 @@
+# 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'
+
+ trait :common do
+ common true
+ project nil
+ end
+ end
+end