debian-mirror-gitlab/lib/gitlab/metrics/exporter/web_exporter.rb

15 lines
361 B
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
module Gitlab
module Metrics
module Exporter
class WebExporter < BaseExporter
# This exporter is always run on master process
2022-03-02 08:16:31 +05:30
def initialize(**options)
super(Settings.monitoring.web_exporter, log_enabled: true, log_file: 'web_exporter.log', **options)
2019-12-21 20:55:43 +05:30
end
end
end
end
end