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

web_exporter.rb « exporter « metrics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9a471c337702f5b0a9c5c22c1605b0bd771d4d60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module Metrics
    module Exporter
      class WebExporter < BaseExporter
        # This exporter is always run on master process
        def initialize(**options)
          super(Settings.monitoring.web_exporter, log_enabled: true, log_file: 'web_exporter.log', **options)
        end
      end
    end
  end
end