2021-02-03 16:09:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
# This file is used by Rack-based servers to start the application.
|
|
|
|
|
2019-01-16 07:09:29 -05:00
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
2012-12-28 13:11:28 -05:00
|
|
|
|
2019-08-12 05:49:01 -04:00
|
|
|
def master_process?
|
2021-05-26 05:11:02 -04:00
|
|
|
Prometheus::PidProvider.worker_id == 'puma_master'
|
2019-08-12 05:49:01 -04:00
|
|
|
end
|
|
|
|
|
2017-12-28 08:55:34 -05:00
|
|
|
warmup do |app|
|
2021-07-20 11:10:07 -04:00
|
|
|
# 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?
|
|
|
|
|
2017-12-28 08:55:34 -05:00
|
|
|
client = Rack::MockRequest.new(app)
|
|
|
|
client.get('/')
|
|
|
|
end
|
|
|
|
|
2021-07-20 05:08:43 -04:00
|
|
|
map ENV['RAILS_RELATIVE_URL_ROOT'].presence || "/" do
|
2018-02-07 09:44:05 -05:00
|
|
|
use Gitlab::Middleware::ReleaseEnv
|
2012-12-28 13:11:28 -05:00
|
|
|
run Gitlab::Application
|
|
|
|
end
|