mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-06 10:19:48 +00:00
15 lines
361 B
Ruby
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
|