summaryrefslogtreecommitdiff
path: root/lib/gitlab/prometheus/metric.rb
blob: f54b2c6aaffa9a1647fa249c1e5bfefa94022a14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Gitlab
  module Prometheus
    class Metric
      include ActiveModel::Model

      attr_accessor :title, :required_metrics, :weight, :y_label, :queries

      validates :title, :required_metrics, :weight, :y_label, :queries, presence: true

      def initialize(params = {})
        super(params)
        @y_label ||= 'Values'
      end
    end
  end
end