gitlab/config.ru

26 lines
855 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
2011-10-08 23:36:38 +02:00
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
2012-12-28 19:11:28 +01:00
def master_process?
Prometheus::PidProvider.worker_id == 'puma_master'
end
warmup do |app|
# The following is necessary to ensure stale Prometheus metrics don't accumulate over time.
# It needs to be done as early as here to ensure metrics files aren't deleted.
# After we hit our app in `warmup`, first metrics and corresponding files already being created,
# for example in `lib/gitlab/metrics/requests_rack_middleware.rb`.
Prometheus::CleanupMultiprocDirService.new.execute if master_process?
client = Rack::MockRequest.new(app)
client.get('/')
end
map ENV['RAILS_RELATIVE_URL_ROOT'].presence || "/" do
2018-02-07 15:44:05 +01:00
use Gitlab::Middleware::ReleaseEnv
2012-12-28 19:11:28 +01:00
run Gitlab::Application
end