2021-03-11 19:13:27 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
# This file is used by Rack-based servers to start the application.
|
|
|
|
|
2019-03-02 22:35:43 +05:30
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
def master_process?
|
2021-09-04 01:27:46 +05:30
|
|
|
Prometheus::PidProvider.worker_id == 'puma_master'
|
2019-10-12 21:52:04 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
warmup do |app|
|
2021-09-04 01:27:46 +05:30
|
|
|
# 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?
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
client = Rack::MockRequest.new(app)
|
|
|
|
client.get('/')
|
|
|
|
end
|
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
map ENV['RAILS_RELATIVE_URL_ROOT'].presence || "/" do
|
2018-03-27 19:54:05 +05:30
|
|
|
use Gitlab::Middleware::ReleaseEnv
|
2014-09-02 18:07:02 +05:30
|
|
|
run Gitlab::Application
|
|
|
|
end
|