debian-mirror-gitlab/lib/gitlab/metrics/exporter/web_exporter.rb
2022-04-04 11:22:00 +05:30

15 lines
361 B
Ruby

# 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