summaryrefslogtreecommitdiff
path: root/lib/gitlab/prometheus/metric_group.rb
blob: 729fef34b35e83c8566b25b8aee838216bf28d61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Gitlab
  module Prometheus
    class MetricGroup
      include ActiveModel::Model

      attr_accessor :name, :priority, :metrics
      validates :name, :priority, :metrics, presence: true

      def self.all
        AdditionalMetricsParser.load_groups_from_yaml
      end
    end
  end
end