Welcome to mirror list, hosted at ThFree Co, Russian Federation.

metrics.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4779755bb22534d6f43ac73dcb77b270cdb660d3 (plain)
1
2
3
4
5
6
7
8
9
10
module Gitlab
  module Metrics
    extend Gitlab::Metrics::InfluxDb
    extend Gitlab::Metrics::Prometheus

    def self.enabled?
      influx_metrics_enabled? || prometheus_metrics_enabled?
    end
  end
end