debian-mirror-gitlab/config/initializers/memory_watchdog.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
599 B
Ruby
Raw Normal View History

2022-08-13 15:12:31 +05:30
# frozen_string_literal: true
return unless Gitlab::Runtime.application?
return unless Gitlab::Utils.to_boolean(ENV['GITLAB_MEMORY_WATCHDOG_ENABLED'])
Gitlab::Cluster::LifecycleEvents.on_worker_start do
handler =
if Gitlab::Runtime.puma?
Gitlab::Memory::Watchdog::PumaHandler.new
elsif Gitlab::Runtime.sidekiq?
Gitlab::Memory::Watchdog::TermProcessHandler.new
else
Gitlab::Memory::Watchdog::NullHandler.instance
end
2022-08-27 11:52:29 +05:30
watchdog = Gitlab::Memory::Watchdog.new(
2022-08-13 15:12:31 +05:30
handler: handler, logger: Gitlab::AppLogger
2022-08-27 11:52:29 +05:30
)
Gitlab::BackgroundTask.new(watchdog).start
2022-08-13 15:12:31 +05:30
end