c134a72cdb
+ Use NullMetrics to mock metrics when unused + Use method_missing in NullMetrics mocking + Update prometheus gem to version that correctly uses transitive dependencies + Ensure correct folders are used in Multiprocess prometheus client tests. + rename Sessions controller's metric
25 lines
748 B
Ruby
25 lines
748 B
Ruby
# This file is used by Rack-based servers to start the application.
|
|
|
|
if defined?(Unicorn)
|
|
require 'unicorn'
|
|
|
|
if ENV['RAILS_ENV'] == 'production' || ENV['RAILS_ENV'] == 'staging'
|
|
# Unicorn self-process killer
|
|
require 'unicorn/worker_killer'
|
|
|
|
min = (ENV['GITLAB_UNICORN_MEMORY_MIN'] || 300 * 1 << 20).to_i
|
|
max = (ENV['GITLAB_UNICORN_MEMORY_MAX'] || 350 * 1 << 20).to_i
|
|
|
|
# Max memory size (RSS) per worker
|
|
use Unicorn::WorkerKiller::Oom, min, max
|
|
end
|
|
end
|
|
|
|
# set default directory for multiproces metrics gathering
|
|
ENV['prometheus_multiproc_dir'] ||= 'tmp/prometheus_multiproc_dir'
|
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
|
|
|
map ENV['RAILS_RELATIVE_URL_ROOT'] || "/" do
|
|
run Gitlab::Application
|
|
end
|